Fix long URLs breaking out of article bounds on mobile

This commit is contained in:
Ryan Gibson 2024-08-08 23:21:43 -04:00
parent 18ed67b2e6
commit b81ef0b227
No known key found for this signature in database
GPG key ID: 2179CAF509FD45EA

View file

@ -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 {