mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 02:42:26 -05:00
Moved View activity under service name No line under h2 Removed Job history from side nav
41 lines
480 B
SCSS
41 lines
480 B
SCSS
.navigation {
|
|
|
|
padding: 20px 0 0 0;
|
|
|
|
ul,
|
|
h2 {
|
|
@include core-19;
|
|
margin: 10px 20px 15px 0;
|
|
list-style-type: none;
|
|
}
|
|
|
|
ul {
|
|
border-bottom: 1px solid $border-colour;
|
|
padding: 0 0 10px 0;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
}
|
|
|
|
}
|