index.scss 927 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. :root {
  2. --zIndex-dialog: 9999;
  3. --default-bgc: #f2f4f7;
  4. --v-primary-base: #00897B;
  5. --v-error-base: #fe574a;
  6. --v-primary-lighten1: #26A69A;
  7. --v-primary-lighten2: #4DB6AC;
  8. --v-primary-lighten3: #80CBC4;
  9. --v-primary-lighten4: #B2DFDB;
  10. --default-text: #666;
  11. }
  12. // 长按钮
  13. .buttons {
  14. height: 36px;
  15. width: 224px;
  16. }
  17. // 短按钮
  18. .half-button {
  19. height: 36px;
  20. width: 88px;
  21. }
  22. // 默认宽度
  23. .default-width {
  24. width: 1184px;
  25. min-width: 1184px;
  26. max-width: 1184px;
  27. margin: 0 auto;
  28. // align-items: center;
  29. }
  30. // 高亮
  31. .default-active {
  32. color: var(--v-primary-base) !important;
  33. }
  34. .border-bottom-dashed {
  35. border-bottom: 1px dashed #ccc;
  36. }
  37. .white-bgc {
  38. background-color: #fff;
  39. }
  40. .ellipsis {
  41. white-space: nowrap;
  42. text-overflow: ellipsis;
  43. overflow: hidden;
  44. }
  45. .vline {
  46. display: inline-block;
  47. width: 1px;
  48. height: 10px;
  49. vertical-align: middle;
  50. background-color: #e0e0e0;
  51. margin: 0 10px;
  52. }