Fix posts overflowing on Safari on iOS
In Safari, the value `anywhere` is not supported for property `overflow-wrap`. Once changed to `break-word`, it behaves like it does in Chrome and Firefox.
This commit is contained in:
parent
39ba50dada
commit
a7925ed62d
@ -277,7 +277,7 @@ input[type="submit"]:hover { color: var(--accent); }
|
||||
.post_left, .post_right {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow-wrap: anywhere;
|
||||
overflow-wrap: break-word;
|
||||
}
|
||||
|
||||
.post_left {
|
||||
@ -579,4 +579,4 @@ td, th {
|
||||
#logo { margin: 5px auto; }
|
||||
#searchbox { width: 100%; }
|
||||
#github { display: none; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user