fix sizing/wordbreak malfunction in firefox

This commit is contained in:
Ashley Blewer 2017-10-18 16:39:26 -04:00
parent 5cb449afcc
commit 09e637e6c4

View File

@ -5,7 +5,6 @@ html, body {
background-color: #060606;
margin: 0;
word-break: break-word;
word-break: break-all;
}
.grid {
@ -27,6 +26,10 @@ html, body {
grid-area: content;
}
.content p {
word-break: break-all;
}
.sidebar {
grid-area: sidebar;
}
@ -160,6 +163,13 @@ div {
transition: all .5s ease-out;
}
.contents-list {
font-size: 0.9em;
}
nav .heading {
word-break: normal;
}
.recipe {
display: block;
width: 90%;