atom.scss 536 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .tac {
  2. text-align: center;
  3. }
  4. .bold {
  5. font-weight: 600;
  6. }
  7. .pr {
  8. position: relative;
  9. }
  10. .flex {
  11. display: flex;
  12. }
  13. .flex-ac {
  14. display: flex;
  15. align-items: center;
  16. }
  17. .space-between {
  18. justify-content: space-between;
  19. }
  20. .mt48 {
  21. margin-top: 48px !important;
  22. }
  23. .primary {
  24. color: $primary-color !important;
  25. }
  26. .highlight {
  27. color: $danger-color !important;
  28. }
  29. .border-top {
  30. @include thin-border(top);
  31. }
  32. .border-bottom {
  33. @include thin-border(bottom);
  34. }
  35. .bg-gray {
  36. background: #f7f7f7;
  37. }
  38. .pointer {
  39. cursor: pointer;
  40. }