Files
notifications-admin/app/assets/stylesheets/components/navigation.scss
Chris Hill-Scott 6bdc0d3fce Tidy up navigation code
- use SASS variables for colours and spacing
- make navigation an include not a macro (because it doesn’t take any
  parameters)
2016-01-05 13:22:08 +00:00

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;
}
}