mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
43 lines
751 B
Plaintext
Executable File
43 lines
751 B
Plaintext
Executable File
@import '~theme/index.less';
|
|
|
|
// PRIMARY LAYOUT
|
|
.primary_layout_container {
|
|
background-color: transparent;
|
|
transition: all 150ms ease-in-out;
|
|
backdrop-filter: blur(2px);
|
|
|
|
overflow-x: hidden;
|
|
// overflow-y: overlay;
|
|
|
|
width: auto;
|
|
height: 100%;
|
|
padding: 15px 0;
|
|
align-self: baseline;
|
|
|
|
position: relative;
|
|
bottom: 0;
|
|
display: flex;
|
|
align-self: center;
|
|
|
|
max-width: 750px;
|
|
min-width: 570px;
|
|
|
|
@media (min-width: @bp-medium) {
|
|
min-width: 750px;
|
|
}
|
|
@media (min-width: @bp-xlarge) {
|
|
min-width: 1112px;
|
|
}
|
|
}
|
|
|
|
.primary_layout_content {
|
|
vertical-align: middle;
|
|
width: 100%;
|
|
padding: @primary_layout_content_padding;
|
|
transition: all 150ms ease-in-out;
|
|
|
|
@media (min-width: @bp-medium) {
|
|
padding: 0;
|
|
}
|
|
}
|