2025-06-13 19:18:28 +08:00

18 lines
399 B
Plaintext

.drawerBox{
.drawerBoxContent{
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
.leftContent{
width: calc(50% - 16px);
height: 100%;
}
.rightContent{
width: calc(50% - 16px);
height: 100%;
overflow-y: auto;
}
}
}