mirror of
https://github.com/plankanban/planka.git
synced 2025-12-18 01:11:13 +03:00
29 lines
593 B
SCSS
29 lines
593 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) {
|
|
.toggleButton {
|
|
box-shadow: none;
|
|
font-weight: normal;
|
|
margin-top: 8px;
|
|
padding: 6px 11px;
|
|
text-align: center;
|
|
}
|
|
|
|
.wrapper {
|
|
overflow: hidden;
|
|
}
|
|
|
|
.wrapperExpanded {
|
|
max-height: none !important;
|
|
overflow: visible;
|
|
}
|
|
|
|
.wrapperPartHidden {
|
|
mask-image: linear-gradient(180deg, #000 80%, transparent);
|
|
-webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
|
|
}
|
|
}
|