Files
cpms_operation_platform/src/layouts/BasicLayout.module.less
T

51 lines
688 B
Plaintext
Raw Normal View History

2026-07-14 10:31:17 +08:00
.container {
min-height: 100vh;
height: 100vh;
2026-07-14 10:31:17 +08:00
}
.logo {
height: 56px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
color: #1a1a1a;
background: #fff;
2026-07-14 10:31:17 +08:00
}
.logoText {
font-size: 16px;
font-weight: 600;
white-space: nowrap;
}
.trigger {
font-size: 18px;
cursor: pointer;
transition: color 0.3s;
padding: 0 12px;
display: inline-flex;
align-items: center;
&:hover {
color: #1677ff;
}
}
.content {
margin: 16px;
border-radius: 8px;
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
overflow: hidden;
2026-07-14 10:31:17 +08:00
}
.main {
flex: 1;
min-height: 0;
display: flex;
flex-direction: column;
2026-07-14 10:31:17 +08:00
}