1
0
Fork 0
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:
Fred Chasen 2017-02-24 17:49:04 -05:00
parent 26a4c40409
commit 4fe564f03e
2 changed files with 3 additions and 2 deletions

View file

@ -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",

View file

@ -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");