Navigation.scss 574 B

1234567891011121314151617181920212223242526272829303132
  1. /**
  2. * React Static Boilerplate
  3. * https://github.com/koistya/react-static-boilerplate
  4. * Copyright (c) Konstantin Tarkus (@koistya) | MIT license
  5. */
  6. @import '../variables.scss';
  7. .Navigation {
  8. display: flex;
  9. flex-direction: row;
  10. margin: 2em 0 5em 0;
  11. list-style: none;
  12. justify-content: flex-end;
  13. }
  14. .Navigation-item {
  15. padding: 0 2em;
  16. }
  17. .Navigation-link {
  18. padding: 0.5em 1em;
  19. color: $brand-color;
  20. text-decoration: none;
  21. text-transform: uppercase;
  22. cursor: pointer;
  23. &:hover {
  24. border-bottom: 3px solid $brand-color;
  25. color: $text-color;
  26. }
  27. }