1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- @import "../layout_common";
- .layout-wrap--topMix {
- width: 100%;
- height: 100%;
- .el-header {
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- height: $header_height;
- //padding: 0 15px 0 0;
- padding: 0;
- background-color: var(--el-header-bg-color);
- border-bottom: 1px solid var(--el-header-border-color);
- //box-shadow: 0 2px 8px var(--el-header-border-color);
- //box-shadow: 0 1px 4px -1px var(--el-header-border-color);
- //z-index: $header_index + 1;
- .header-lf {
- display: flex;
- align-items: center;
- overflow: hidden;
- white-space: nowrap;
- height: 100%;
- .logo {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- width: 210px;
- height: 100%;
- //border-right: 1px solid #f00;
- //margin-right: 16px;
- .logo-img {
- //width: 28px;
- width: 36px;
- height: 36px;
- object-fit: contain;
- //margin-right: 6px;
- margin: 0 6px;
- }
- .logo-text {
- color: var(--el-color-primary);
- font-size: 15px;
- font-weight: bold;
- //color: var(--el-header-logo-text-color);
- white-space: nowrap;
- }
- }
- }
- }
- .topMix-content {
- display: flex;
- height: calc(100% - $header_height);
- .aside-box {
- width: auto;
- background-color: var(--el-menu-bg-color);
- //border-right: 1px solid var(--el-aside-border-color);
- z-index: $header_index;
- //box-shadow: 2px 0 8px #1d23290d;
- //box-shadow: 2px 0 8px var(--el-aside-border-color);
- box-shadow: 1px 0 2px var(--el-aside-border-color);
- ////box-shadow: 1px 1px 8px var(--el-color-primary);
- //box-shadow: 1px 1px 16px -10px var(--el-color-primary);
- display: flex;
- flex-direction: column;
- height: 100%;
- transition: width 0.3s ease;
- .layout-menu-wrap {
- width: 100%;
- overflow-x: hidden;
- border-right: none;
- // 折叠
- /*&--collapse {
- //background-color: transparent !important;
- .menu-icon {
- margin-right: 0;
- }
- }*/
- }
- }
- .topMix-main {
- display: flex;
- flex-direction: column;
- }
- }
- }
|