_header.scss 600 B

123456789101112131415161718192021222324252627282930313233
  1. // header styles
  2. // ======================================================================
  3. .header {
  4. @include spacing-inner(t 3, h 4);
  5. text-align: center;
  6. &--light {
  7. @include spacing-inner(t 1, h 1);
  8. @include center;
  9. max-width: map-get($breakpoints, xl);
  10. width: 100%;
  11. display: flex;
  12. justify-content: flex-end;
  13. align-items: center;
  14. }
  15. &__title {
  16. @include spacing(v 2);
  17. &--light {
  18. @include spacing(v 0, l 1);
  19. @include font-size(h5);
  20. }
  21. }
  22. &__state {
  23. @include spacing(r auto);
  24. }
  25. .number--square {
  26. visibility: hidden;
  27. }
  28. }