mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
42 lines
576 B
SCSS
42 lines
576 B
SCSS
@import 'src/styles/variables';
|
|
|
|
.wrap {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.content {
|
|
position: relative;
|
|
z-index: 3;
|
|
}
|
|
|
|
.comments {
|
|
flex: 3 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
align-items: stretch;
|
|
justify-content: flex-start;
|
|
flex-direction: column;
|
|
|
|
@media (max-width: 1024px) {
|
|
flex: 2 1;
|
|
}
|
|
}
|
|
|
|
.panel {
|
|
@include row_shadow;
|
|
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
justify-content: stretch;
|
|
}
|
|
|
|
.node {
|
|
@include tablet {
|
|
border-radius: 0;
|
|
}
|
|
}
|