mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-04 15:09:16 +02:00
Remove padding if laying out columns
This commit is contained in:
parent
26a4c40409
commit
4fe564f03e
2 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "epubjs",
|
||||
"version": "0.3.12",
|
||||
"version": "0.3.13",
|
||||
"description": "Parse and Render Epubs",
|
||||
"main": "lib/index.js",
|
||||
"jsnext:main": "src/index.js",
|
||||
|
|
|
@ -667,7 +667,8 @@ class Contents {
|
|||
|
||||
// this.overflowY("hidden");
|
||||
this.css("overflowY", "hidden");
|
||||
this.css("margin", "0");
|
||||
this.css("margin", "0 !important");
|
||||
this.css("padding", "0 !important");
|
||||
this.css("boxSizing", "border-box");
|
||||
this.css("maxWidth", "inherit");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue