atom.scss 732 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. .ellipsis {
  24. @include ellipsis();
  25. &-2 {
  26. @include ellipsis(2);
  27. }
  28. }
  29. .mt48 {
  30. margin-top: 48px !important;
  31. }
  32. .primary {
  33. color: $primary-color !important;
  34. }
  35. .highlight {
  36. color: $danger-color !important;
  37. }
  38. .border-top {
  39. @include thin-border(top);
  40. }
  41. .border-bottom {
  42. @include thin-border(bottom);
  43. }
  44. .bg-gray {
  45. background: #f7f7f7;
  46. }
  47. .pointer {
  48. cursor: pointer;
  49. }
  50. .lock-scroll {
  51. overflow: hidden;
  52. }
  53. .lock {
  54. overflow: hidden;
  55. pointer-events: none;
  56. }