App.vue 960 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "App",
  9. };
  10. </script>
  11. <style>
  12. .app-breadcrumb.el-breadcrumb{
  13. line-height: 60px !important;
  14. }
  15. .el-scrollbar__thumb {
  16. background-color: rgba(144, 147, 153, 0.8)!important;
  17. }
  18. .tabSetting {
  19. display: flex;
  20. justify-content: flex-end;
  21. }
  22. .listStyle {
  23. display: flex;
  24. border-top: 1px solid #dcdfe6;
  25. border-left: 1px solid #dcdfe6;
  26. border-right: 1px solid #dcdfe6;
  27. }
  28. .listStyle:last-child {
  29. border-bottom: 1px solid #dcdfe6;
  30. }
  31. .progress {
  32. display: flex;
  33. align-items: center;
  34. padding: 2px;
  35. background-color: rgba(0, 0, 0, 0.05);
  36. height: 100%;
  37. }
  38. .el-table__body-wrapper{
  39. z-index: 2
  40. }
  41. .el-form-item {
  42. margin-bottom: 4px !important;
  43. }
  44. .el-dialog__body {
  45. padding: 10px 30px 30px 30px !important;
  46. }
  47. .el-divider--horizontal {
  48. margin: 0 0 3px 0;
  49. }
  50. .el-input.is-disabled .el-input__inner {
  51. color: #000000 !important;
  52. }
  53. </style>