index.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @use "./reset";
  2. .app-container {
  3. padding: 10px;
  4. }
  5. .search-container {
  6. padding: 18px 0 0 10px;
  7. margin-bottom: 10px;
  8. background-color: var(--el-bg-color-overlay);
  9. border: 1px solid var(--el-border-color-light);
  10. border-radius: 4px;
  11. box-shadow: var(--el-box-shadow-light);
  12. }
  13. .table-container > .el-card__header {
  14. padding: calc(var(--el-card-padding) - 8px) var(--el-card-padding);
  15. }
  16. .link-type,
  17. .link-type:focus {
  18. color: #337ab7;
  19. cursor: pointer;
  20. &:hover {
  21. color: rgb(32 160 255);
  22. }
  23. }
  24. .mainContentBox {
  25. width: 100%;
  26. height: calc(100vh - 48px);
  27. padding: 10px;
  28. overflow: auto;
  29. border: 2px solid black;
  30. }
  31. //二级页面公共样式,上下结构,上面是childHeader
  32. .child-page-container {
  33. height: 100%;
  34. width: 100%;
  35. display: flex;
  36. flex-direction: column;
  37. align-items: center;
  38. justify-content: center;
  39. background-color: $hj-bg;
  40. .child-header {
  41. width: 100%;
  42. height: $child-header-height;
  43. border: 2px solid blue;
  44. display: flex;
  45. align-items: center;
  46. justify-content: space-between;
  47. padding: 0 72px;
  48. }
  49. .child-bottom {
  50. width: 100%;
  51. height: calc(100vh - $child-header-height);
  52. border: 2px solid orange;
  53. }
  54. }