2026-04-22 21:11:18 +02:00
|
|
|
@import './tokens.less';
|
|
|
|
|
|
2021-01-21 16:09:23 +01:00
|
|
|
.app {
|
2026-01-28 14:27:03 +01:00
|
|
|
height: 100vh;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
|
|
|
|
|
&__main {
|
|
|
|
|
height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2021-01-21 16:09:23 +01:00
|
|
|
|
2025-09-29 20:36:56 +02:00
|
|
|
&__content {
|
2026-01-28 14:27:03 +01:00
|
|
|
flex: 1;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
position: relative;
|
2026-04-22 21:11:18 +02:00
|
|
|
padding: @space-6;
|
|
|
|
|
background-color: transparent;
|
2026-01-28 14:27:03 +01:00
|
|
|
box-sizing: border-box;
|
2026-01-29 09:46:23 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2026-01-28 14:27:03 +01:00
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
2026-04-22 21:11:18 +02:00
|
|
|
padding: @space-3;
|
2026-01-28 14:27:03 +01:00
|
|
|
}
|
2021-01-21 16:09:23 +01:00
|
|
|
}
|
2022-03-27 19:42:58 +02:00
|
|
|
}
|