This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/styles/theme/background.scss
dpschen 7719ef1bef
Some checks failed
continuous-integration/drone/push Build is failing
feat: move pagination to dedicated component (#760)
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: #760
Reviewed-by: konrad <k@knt.li>
Co-authored-by: dpschen <dpschen@noreply.kolaente.de>
Co-committed-by: dpschen <dpschen@noreply.kolaente.de>
2021-09-21 19:03:38 +00:00

43 lines
782 B
SCSS

.app-container.has-background, .link-share-container.has-background {
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
min-height: 100vh;
// FIXME: move to pagination component
.pagination-link:not(.is-current) {
background: $light-background;
}
.box,
.card,
.switch-view,
.table-view .button,
.filter-container .button,
.search .button {
box-shadow: none;
}
.task-view {
border-radius: $radius;
margin: 0 1rem;
}
.kanban .tasks {
background: transparent;
.task {
border-radius: $radius !important;
}
}
}
.link-share-container.has-background .view {
background: transparent;
border: none;
.logout .button {
box-shadow: none;
}
}