_components.nav.scss 335 B

1234567891011121314151617181920
  1. nav {
  2. float: right;
  3. margin: 2em 0 0 0;
  4. a {
  5. color: $blue;
  6. text-decoration: none;
  7. text-shadow: 1px 1px $white, 2px 2px $darker-white;
  8. &:not(:last-child) {
  9. margin-right: 20px;
  10. }
  11. }
  12. }
  13. .error-wrapper {
  14. nav {
  15. float: none;
  16. font-size: $large-font-size;
  17. }
  18. }