mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-11 09:28:27 -04:00
Moves the right-padding from being on the container and each element to just being on the container. No visual changes.
31 lines
354 B
SCSS
31 lines
354 B
SCSS
.navigation {
|
|
|
|
padding: 0 $gutter 0 0;
|
|
|
|
li {
|
|
@include core-19;
|
|
margin: 10px 0 0 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
h2 {
|
|
@include bold-19;
|
|
margin: $gutter 0 0 0;
|
|
}
|
|
|
|
a {
|
|
|
|
&:link,
|
|
&:visited {
|
|
text-decoration: none;
|
|
}
|
|
|
|
&:hover {
|
|
color: $link-hover-colour;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
}
|
|
|
|
}
|