Files
planka/client/src/components/cards/CardModal/CardModal.module.scss

29 lines
465 B
SCSS
Raw Normal View History

/*!
* 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;
}
}
}