_header.scss 561 B

1234567891011121314151617181920212223242526272829303132
  1. header{
  2. z-index: 999;
  3. position: relative;
  4. @include inlineflex();
  5. justify-content: center;
  6. width: 100%;
  7. border-bottom: 1px solid $light-blue;
  8. height: 105px;
  9. nav{
  10. @include inlineflex();
  11. justify-content: space-around;
  12. height: 100px;
  13. width: 70%;
  14. flex-wrap: nowrap;
  15. .logo{
  16. display: flex;
  17. a{
  18. display: block;
  19. margin: auto;
  20. }
  21. }
  22. .reso{
  23. @include inlineflex;
  24. flex-wrap: nowrap;
  25. a{
  26. display: block;
  27. width: 35px;
  28. margin: auto 5px;
  29. }
  30. }
  31. }
  32. }