mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-19 05:59:44 -04:00
- use SASS variables for colours and spacing - make navigation an include not a macro (because it doesn’t take any parameters)
27 lines
327 B
SCSS
27 lines
327 B
SCSS
.navigation {
|
|
|
|
padding: $gutter 0 0 0;
|
|
|
|
li {
|
|
@include core-16();
|
|
margin: 3px 0;
|
|
}
|
|
|
|
ul {
|
|
border-bottom: 1px solid $border-colour;
|
|
margin: 0 20px 0 0;
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
a:link,
|
|
a:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: $link-hover-colour;
|
|
}
|
|
|
|
}
|