mirror of
https://github.com/PlayEdu/backend
synced 2025-06-28 18:22:49 +08:00
26 lines
411 B
Plaintext
26 lines
411 B
Plaintext
.layout-wrap {
|
|
width: 100%;
|
|
height: 100vh;
|
|
display: flex;
|
|
.left-menu {
|
|
width: 200px;
|
|
}
|
|
.right-cont {
|
|
width: calc(100% - 200px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
.right-top {
|
|
width: 100%;
|
|
height: 48px;
|
|
}
|
|
|
|
.right-main {
|
|
flex: 1;
|
|
box-sizing: border-box;
|
|
padding: 24px;
|
|
overflow-y: auto;
|
|
background-color: #f1f2f9;
|
|
}
|
|
}
|
|
}
|