style.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. :root {
  2. font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  3. color-scheme: light dark;
  4. font-synthesis: none;
  5. text-rendering: optimizeLegibility;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. -webkit-text-size-adjust: 100%;
  9. }
  10. * {
  11. margin: 0;
  12. padding: 0;
  13. box-sizing: border-box;
  14. }
  15. html,
  16. body,
  17. #app {
  18. height: 100%;
  19. width: 100%;
  20. }
  21. // body {
  22. // background: #000;
  23. // }
  24. .margin-left-0 {
  25. margin-left: 0 !important;
  26. }
  27. .margin-left-3 {
  28. margin-left: 0.75rem;
  29. }
  30. .margin-right-0 {
  31. margin-right: 0 !important;
  32. }
  33. .margin-top-0 {
  34. margin-top: 0;
  35. }
  36. .margin-bottom-0 {
  37. margin-bottom: 0;
  38. }
  39. .padding-left-0 {
  40. padding-left: 0 !important;
  41. }
  42. .padding-left-3 {
  43. padding-left: 12px !important;
  44. }
  45. .padding-right-0 {
  46. padding-right: 0 !important;
  47. }
  48. .padding-top-0 {
  49. padding-top: 0 !important;
  50. }
  51. .padding-bottom-0 {
  52. padding-bottom: 0 !important;
  53. }
  54. .w-100 {
  55. width: 100%;
  56. }
  57. .h-100 {
  58. height: 100%;
  59. }
  60. .m-b-3 {
  61. margin-bottom: 0.75rem;
  62. }
  63. .m-b-5 {
  64. margin-bottom: 1.25rem;
  65. }
  66. .f-1 {
  67. flex: 1;
  68. }
  69. ::-webkit-scrollbar {
  70. width: 3px;
  71. height: 3px;
  72. }
  73. ::-webkit-scrollbar-track {
  74. width: 3px;
  75. background-color: #f9f9f9;
  76. }
  77. ::-webkit-scrollbar-thumb {
  78. background-color: #999;
  79. }
  80. .picker-date {
  81. .el-date-picker__header {
  82. display: none;
  83. span:nth-child(2) {
  84. display: none;
  85. }
  86. button:nth-child(1) {
  87. display: none;
  88. }
  89. button:nth-child(5) {
  90. display: none;
  91. }
  92. }
  93. }
  94. .my-date-picker {
  95. // width: 100% !important;
  96. .el-input__wrapper {
  97. width: 100%;
  98. }
  99. }
  100. @import '@/assets/iconfont.css';