You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
897 B

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
  1. :root {
  2. // --el-font-size-base: 50px;
  3. // --el-button-size: 80px;
  4. --el-color-primary: #26509C;
  5. //--el-button-active-bg-color: linear-gradient(90deg, #0657C0 24%, #096AE0 101%);
  6. --text-color-primary: #17213c;
  7. //--el-color-success: rgba(88, 162, 95, 1);
  8. //--text-color-info: #838b99;
  9. //--el-input-border: #dae0f2;
  10. //--el-font-weight-primary: 400;
  11. //--color-red: #f56c6c;
  12. //--color-green: #67c23a;
  13. //--color-yellow: #e6a23c;
  14. //--color-blue: --el-color-primary;
  15. --el-font-family: 'PingFangSC-Regular', 'PingFang SC', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  16. }
  17. .el-dialog {
  18. position: absolute;
  19. top: 50%;
  20. left: 50%;
  21. transform: translate(-50%, -50%);
  22. margin: 0;
  23. padding: 0;
  24. .el-dialog__header {
  25. background: rgba(0, 0, 0, .03);
  26. padding: 10px;
  27. }
  28. .el-dialog__body {
  29. padding: 10px;
  30. }
  31. .el-dialog__footer {
  32. padding: 10px;
  33. }
  34. }