mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-22 14:35:43 -06:00
Fix long URLs breaking out of article bounds on mobile
This commit is contained in:
parent
18ed67b2e6
commit
b81ef0b227
1 changed files with 7 additions and 0 deletions
|
@ -128,6 +128,13 @@ code {
|
|||
overflow-wrap: break-word; /* Renamed property in CSS3 draft spec */
|
||||
}
|
||||
|
||||
/* Fix long URLs breaking out of article bounds on mobile */
|
||||
a {
|
||||
word-break: break-word;
|
||||
word-wrap: break-word;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
/* -- Chroma Highlight -- */
|
||||
/* Background */
|
||||
.prose .chroma {
|
||||
|
|
Loading…
Reference in a new issue