Files
astuto/app/assets/stylesheets/components/SiteSettings/Boards/index.scss
Riccardo Graziosi a11157295d Various improvements (#325)
* Fix missing translation in roadmap
* Fix resizing of textareas
* Increase line height for small muted texts
* Improve collapsed board list style
* Fix switch on top of header (z-index)
* Fix margin inconsistencies in site settings
* Add user count to site settings
2024-04-10 23:28:58 +02:00

53 lines
740 B
SCSS

.boardsList {
@extend
.p-0,
.m-0;
list-style: none;
.boardEditable {
@extend
.d-flex,
.justify-content-between,
.p-3;
column-gap: 32px;
.boardInfo {
@extend
.d-flex,
.flex-column;
row-gap: 8px;
.boardName { @extend .align-self-center; }
.boardDescription { @extend .text-center; }
}
.boardEditableActions {
@extend .d-flex, .align-self-center;
}
}
}
.boardForm {
@extend
.d-flex,
.flex-column,
.m-2;
flex-grow: 1;
row-gap: 8px;
.boardMandatoryForm {
@extend .d-flex;
column-gap: 8px;
}
.boardDescriptionTextArea {
height: 80px;
min-height: 80px;
resize: vertical;
}
}