1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @use "./reset";
- .app-container {
- padding: 10px;
- }
- .search-container {
- padding: 18px 0 0 10px;
- margin-bottom: 10px;
- background-color: var(--el-bg-color-overlay);
- border: 1px solid var(--el-border-color-light);
- border-radius: 4px;
- box-shadow: var(--el-box-shadow-light);
- }
- .table-container > .el-card__header {
- padding: calc(var(--el-card-padding) - 8px) var(--el-card-padding);
- }
- .link-type,
- .link-type:focus {
- color: #337ab7;
- cursor: pointer;
- &:hover {
- color: rgb(32 160 255);
- }
- }
- .mainContentBox {
- width: 100%;
- height: calc(100vh - 48px);
- padding: 10px;
- overflow: auto;
- border: 2px solid black;
- }
- //二级页面公共样式,上下结构,上面是childHeader
- .child-page-container {
- height: 100%;
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background-color: $hj-bg;
- .child-header {
- width: 100%;
- height: $child-header-height;
- border: 2px solid blue;
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding: 0 72px;
- }
- .child-bottom {
- width: 100%;
- height: calc(100vh - $child-header-height);
- border: 2px solid orange;
- }
- }
|