main.css 777 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,
  6. body,
  7. #app,
  8. .wrapper {
  9. width: 100%;
  10. height: 100%;
  11. background-color: #000000;
  12. overflow: hidden;
  13. }
  14. .el-popover{
  15. background-color: rgb(36,36,36) !important;
  16. border-color: rgb(36,36,36) !important;
  17. }
  18. .el-table{
  19. border-color: rgb(36,36,36) !important;
  20. }
  21. .el-table__row>td{
  22. border-color: rgb(36,36,36) !important;
  23. }
  24. .el-table::before {
  25. height: 0px !important;
  26. }
  27. .el-table::after {
  28. height: 0px !important;
  29. }
  30. .el-dialog{
  31. background-color: rgb(36,36,36) !important;
  32. }
  33. .el-form-item__label{
  34. color: rgb(220, 220, 220) !important;
  35. }
  36. .el-dialog__title{
  37. color: rgb(220, 220, 220) !important;
  38. }
  39. .el-input__inner{
  40. background-color: rgb(100,100,100) !important;
  41. color: rgb(220, 220, 220) !important;
  42. }