_utils.scss 592 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .flex {
  2. display: flex;
  3. }
  4. .justify-start {
  5. justify-content: flex-start;
  6. }
  7. .justify-end {
  8. justify-content: flex-end;
  9. }
  10. .justify-center {
  11. justify-content: center;
  12. }
  13. .justify-between {
  14. justify-content: space-between;
  15. }
  16. .align-center {
  17. align-items: center;
  18. }
  19. .mx-auto {
  20. margin: 0 auto;
  21. }
  22. .hide {
  23. display: none;
  24. }
  25. @mixin fixed {
  26. position: fixed;
  27. top: $top-bar-height;
  28. bottom: 0;
  29. overflow-x: hidden;
  30. overflow-y: auto;
  31. }
  32. @mixin dark-links {
  33. a {
  34. color: $nav-link-color;
  35. }
  36. a.active {
  37. color: $color-link;
  38. }
  39. }