36 lines
677 B
SCSS
Vendored
36 lines
677 B
SCSS
Vendored
.page-project {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
.project-list {
|
|
flex: 1;
|
|
width: 0;
|
|
height: 100%;
|
|
background-color: #fafafa;
|
|
}
|
|
.project-dialog {
|
|
position: relative;
|
|
height: 100%;
|
|
width: 35%;
|
|
min-width: 320px;
|
|
max-width: 520px;
|
|
flex-shrink: 0;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.page-project {
|
|
.project-list {
|
|
height: auto;
|
|
}
|
|
.project-dialog {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
max-width: none;
|
|
}
|
|
}
|
|
}
|