aboutsummaryrefslogtreecommitdiffhomepage
path: root/app
diff options
context:
space:
mode:
authorSimounet <contact@simounet.net>2018-05-21 19:47:28 +0200
committerSimounet <contact@simounet.net>2018-05-21 19:47:28 +0200
commita6e5637507d9e55f131c1cb6fe2e9606127f9b1f (patch)
treea9fdf7276fe1b024332a6f8a7ab29509efd9e99e /app
parent11f15430ffc67e30f084cffc8e909ace87ce19e1 (diff)
downloadwallabag-a6e5637507d9e55f131c1cb6fe2e9606127f9b1f.tar.gz
wallabag-a6e5637507d9e55f131c1cb6fe2e9606127f9b1f.tar.zst
wallabag-a6e5637507d9e55f131c1cb6fe2e9606127f9b1f.zip
Fix overflow wrap issue
Diffstat (limited to 'app')
-rw-r--r--app/Resources/static/themes/material/css/article.scss1
-rw-r--r--app/Resources/static/themes/material/css/media_queries.scss10
2 files changed, 11 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/css/article.scss b/app/Resources/static/themes/material/css/article.scss
index 2d4ef4b4..75658a58 100644
--- a/app/Resources/static/themes/material/css/article.scss
+++ b/app/Resources/static/themes/material/css/article.scss
@@ -11,6 +11,7 @@
11 color: #424242; 11 color: #424242;
12 font-size: 18px; 12 font-size: 18px;
13 line-height: 1.7em; 13 line-height: 1.7em;
14 overflow-wrap: break-word;
14 15
15 h1, 16 h1,
16 h2, 17 h2,
diff --git a/app/Resources/static/themes/material/css/media_queries.scss b/app/Resources/static/themes/material/css/media_queries.scss
index 69e3d47d..72584426 100644
--- a/app/Resources/static/themes/material/css/media_queries.scss
+++ b/app/Resources/static/themes/material/css/media_queries.scss
@@ -22,6 +22,16 @@
22 padding-left: 0; 22 padding-left: 0;
23 } 23 }
24 24
25 table {
26 display: block;
27 overflow: auto;
28 }
29
30 iframe {
31 max-width: 100%;
32 height: auto;
33 }
34
25 .nav-panels .action { 35 .nav-panels .action {
26 padding-right: 0.75rem; 36 padding-right: 0.75rem;
27 } 37 }