Merge pull request #3652 from Simounet/fix/overflow-wrap

Fix overflow wrap issue
This commit is contained in:
Jérémy Benoist 2018-05-24 07:16:36 +02:00 committed by GitHub
commit 1d770f9867
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

View file

@ -11,6 +11,7 @@
color: #424242;
font-size: 18px;
line-height: 1.7em;
overflow-wrap: break-word;
h1,
h2,

View file

@ -22,6 +22,16 @@
padding-left: 0;
}
table {
display: block;
overflow: auto;
}
iframe {
max-width: 100%;
height: auto;
}
.nav-panels .action {
padding-right: 0.75rem;
}

File diff suppressed because one or more lines are too long