mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-15 14:00:35 +00:00
25 lines
381 B
Plaintext
25 lines
381 B
Plaintext
@header-height: 52px;
|
|
|
|
.avatar {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 50%;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.basic-shell {
|
|
min-height: 100vh;
|
|
.next-shell-header {
|
|
height: @header-height;
|
|
}
|
|
.next-shell-main {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-flow: column;
|
|
min-height: calc(100% - @header-height);
|
|
.next-shell-sub-main {
|
|
flex: 1;
|
|
}
|
|
}
|
|
}
|