Skip to content

Commit

Permalink
fix list overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chadsr committed Nov 26, 2021
1 parent d8a1de3 commit 1de2417
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/stylesheets/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,11 @@ header {
overflow-wrap: break-word;

ul.list {
display: block;
overflow: auto;

li {
padding: 8px 0 0 0;
width: 100%;
text-align: left;
display: flex;
Expand All @@ -781,6 +785,8 @@ header {
align-items: center;
justify-content: left;
margin: 0;
word-wrap: auto;
width: 100%;

&::before {
@extend %heading;
Expand All @@ -791,7 +797,7 @@ header {
}

> ul {
margin: 0 0 0 48px;
margin: 0 0 0 24px;

> li {
margin: 0 0 4px 0;
Expand Down

0 comments on commit 1de2417

Please sign in to comment.