| 1234567891011121314151617181920212223242526 |
- .w100 {
- width: 100%;
- }
- // 页头
- .ele-body {
- .page-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-bottom: 1px solid #eaeefb;
- padding-bottom: 8px;
- margin-bottom: 16px;
- }
- }
- // ele-split-layout 左侧盒子充满
- .split-layout-right-content {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- box-sizing: border-box;
- border-width: 1px;
- border-style: solid;
- overflow: auto;
- }
|