mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-18 12:55:26 +00:00
Merge pull request #3652 from Simounet/fix/overflow-wrap
Fix overflow wrap issue
This commit is contained in:
commit
1d770f9867
3 changed files with 12 additions and 1 deletions
|
@ -11,6 +11,7 @@
|
||||||
color: #424242;
|
color: #424242;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: 1.7em;
|
line-height: 1.7em;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
|
|
|
@ -22,6 +22,16 @@
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
display: block;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
iframe {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
.nav-panels .action {
|
.nav-panels .action {
|
||||||
padding-right: 0.75rem;
|
padding-right: 0.75rem;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue