mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
We have lots of keylines in our pages, eg tables, email message previews This makes the pages look quite cluttered, especially because the keylines don’t always align. I think it looks much cleaner without the keylines in the nav, and we have few enough nav items that we don’t need to chunk them up.
36 lines
423 B
SCSS
36 lines
423 B
SCSS
.navigation {
|
|
|
|
padding: $gutter-two-thirds $gutter-half 0 0;
|
|
|
|
ul,
|
|
h2 {
|
|
@include core-19;
|
|
margin: 10px 20px 15px 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
h2 {
|
|
font-weight: bold;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
li {
|
|
margin: 10px 0 0 0;
|
|
}
|
|
|
|
a {
|
|
|
|
&:link,
|
|
&:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
&:hover {
|
|
color: $link-hover-colour;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
}
|
|
|
|
}
|