Skip to content

Commit 9cc3c3e

Browse files
authored
Fix margin-bottom for ul tags (#157)
1 parent aa7ed44 commit 9cc3c3e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

assets/styles.scss

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,18 @@ $colour-notification-banner: #ffc107;
7474
font-size: 100%;
7575
}
7676
}
77+
7778
// Over-ride default indentation.
7879
:root {
7980
p{
8081
margin-bottom: 0rem;
8182
}
8283
ul{
83-
// TODO(odow): we should reduce the margin-bottom of lists, except this
84-
// disables the drop-down navigation button on mobile.
85-
// margin-bottom: 0rem;
8684
margin-left: 1em;
85+
margin-bottom: 0;
86+
}
87+
.list--nav {
88+
margin-bottom: var(--listHeight, 0)
8789
}
8890
}
8991

0 commit comments

Comments
 (0)