_main-header.scss 574 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // Core: Main Header
  3. //
  4. @include header-variant(
  5. $header-light-bg,
  6. $header-light-color,
  7. $header-mobile-light-bg,
  8. $header-mobile-light-color
  9. );
  10. .main-header {
  11. grid-area: main-header;
  12. border-bottom: $main-header-bottom-border;
  13. width: inherit;
  14. z-index: $zindex-main-header;
  15. }
  16. // Navbar badge
  17. .navbar-badge {
  18. font-size: .6rem;
  19. font-weight: 300;
  20. padding: 2px 4px;
  21. position: absolute;
  22. right: 5px;
  23. top: 9px;
  24. }
  25. .layout-navbar-fixed {
  26. .main-header {
  27. // position: fixed;
  28. }
  29. .content-wrapper {
  30. // margin-top: $main-header-height;
  31. }
  32. }