mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
30 lines
473 B
Plaintext
30 lines
473 B
Plaintext
@import './tokens.less';
|
|
|
|
.app {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
|
|
&__main {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&__content {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
position: relative;
|
|
padding: @space-6;
|
|
background-color: transparent;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
@media (max-width: 768px) {
|
|
padding: @space-3;
|
|
}
|
|
}
|
|
}
|