atom.scss 656 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. .fls0 {
  21. flex-shrink: 0;
  22. }
  23. .mt48 {
  24. margin-top: 48px !important;
  25. }
  26. .primary {
  27. color: $primary-color !important;
  28. }
  29. .highlight {
  30. color: $danger-color !important;
  31. }
  32. .border-top {
  33. @include thin-border(top);
  34. }
  35. .border-bottom {
  36. @include thin-border(bottom);
  37. }
  38. .bg-gray {
  39. background: #f7f7f7;
  40. }
  41. .pointer {
  42. cursor: pointer;
  43. }
  44. .lock-scroll {
  45. overflow: hidden;
  46. }
  47. .lock {
  48. overflow: hidden;
  49. pointer-events: none;
  50. }