Fix margin styles causing layout problems

This commit is contained in:
Christian Bundy 2019-09-30 12:39:24 -07:00
parent 7664438a10
commit df239d1fb5
No known key found for this signature in database
GPG Key ID: EB541AAEF4366237
1 changed files with 5 additions and 2 deletions

View File

@ -108,6 +108,9 @@ pre {
.message.thread-target {
border-color: var(--blue);
/* prevents other messages from overlapping */
margin-top: 1px;
margin-bottom: 0;
}
.message img,
@ -162,7 +165,7 @@ pre {
body {
width: 100%;
max-width: 42rem;
margin: 0 1rem;
margin: 1rem;
overflow: scroll;
}
}
@ -267,7 +270,7 @@ nav > ul > li > a {
nav > ul {
display: flex;
justify-content: space-between;
margin: 1rem 0;
margin: 0;
padding: 0;
}