Break long words in blog entries.

Long strings were overflowing and causing horizontal scroll on mobile.
Put word-wrap/overflow-wrap so they wrap to a new line.
This commit is contained in:
Em 2019-09-27 16:23:42 -04:00
parent ead36ac436
commit c055a1c073
3 changed files with 15 additions and 9 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -175,14 +175,20 @@ tr.active {
// List groups
// Highlight active item
.list-group-item.active {
font-weight: bold;
border: 1px solid #222;
&:hover,
&:focus {
background: #1a1a1a;
.list-group-item {
&.active {
font-weight: bold;
border: 1px solid #222;
&:hover,
&:focus {
background: #1a1a1a;
border: 1px solid #222;
}
}
p {
word-wrap: break-word;
overflow-wrap: break-word;
}
}