You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
441B

  1. header {
  2. .header__logo {
  3. border-bottom: none;
  4. }
  5. nav a {
  6. margin-right: 2rem;
  7. }
  8. .header__logo {
  9. font-size: 2rem;
  10. font-weight: bold;
  11. &:hover {
  12. text-decoration: none;
  13. }
  14. }
  15. }
  16. @media only screen and (max-width: 1000px) {
  17. header {
  18. padding: 1rem 0;
  19. nav {
  20. text-align: center;
  21. }
  22. .header__logo {
  23. // to force menu links to be on a line below
  24. display: block;
  25. }
  26. }
  27. }