mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-11 18:42:54 +00:00
24 lines
411 B
SCSS
Vendored
24 lines
411 B
SCSS
Vendored
.page-project {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
.project-panel {
|
|
flex: 1;
|
|
width: 0;
|
|
height: 100%;
|
|
background-color: #fafafa;
|
|
}
|
|
}
|
|
|
|
@media (height <= 700px) {
|
|
.page-project {
|
|
.project-panel {
|
|
height: auto;
|
|
min-height: 100%;
|
|
&.gantt {
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|