mirror of
https://github.com/plankanban/planka.git
synced 2025-12-25 09:15:00 +03:00
29 lines
465 B
SCSS
29 lines
465 B
SCSS
|
|
/*!
|
||
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
||
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||
|
|
*/
|
||
|
|
|
||
|
|
:global(#app) {
|
||
|
|
@mixin smallScreen {
|
||
|
|
margin: 1rem auto;
|
||
|
|
width: 95%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.wrapper {
|
||
|
|
margin: 2rem auto;
|
||
|
|
width: 880px;
|
||
|
|
|
||
|
|
@media (width < 926px) {
|
||
|
|
@include smallScreen;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.wrapperStory {
|
||
|
|
width: 980px;
|
||
|
|
|
||
|
|
@media (width < 1026px) {
|
||
|
|
@include smallScreen;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|