style.scss 660 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. html,
  2. body,
  3. #app {
  4. margin: 0;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. * {
  9. box-sizing: border-box;
  10. }
  11. #app {
  12. overflow-y: auto;
  13. }
  14. .disable {
  15. opacity: 0.7;
  16. pointer-events: none;
  17. }
  18. .relics-layout {
  19. height: 100%;
  20. display: flex;
  21. flex-direction: column;
  22. overflow: hidden !important;
  23. .relics-header {
  24. flex: none;
  25. }
  26. .relics-content {
  27. flex: 1;
  28. position: relative;
  29. .el-table {
  30. position: absolute;
  31. left: 0;
  32. top: 0;
  33. width: 100%;
  34. height: 100%;
  35. }
  36. }
  37. .pag-layout {
  38. flex: none;
  39. }
  40. }
  41. .link {
  42. color: var(--el-color-primary);
  43. cursor: pointer;
  44. }
  45. :root {
  46. --font14: 14px;
  47. --font16: 16px;
  48. }