Merge pull request #19 from somoso/patch-1

Fix posts overflowing on Safari on iOS
This commit is contained in:
Spike 2021-01-01 11:52:21 -08:00 committed by GitHub
commit 64a92195dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -277,7 +277,7 @@ input[type="submit"]:hover { color: var(--accent); }
.post_left, .post_right { .post_left, .post_right {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow-wrap: anywhere; overflow-wrap: break-word;
} }
.post_left { .post_left {
@ -579,4 +579,4 @@ td, th {
#logo { margin: 5px auto; } #logo { margin: 5px auto; }
#searchbox { width: 100%; } #searchbox { width: 100%; }
#github { display: none; } #github { display: none; }
} }