frontend/src/styles/theme/background.scss
adrinux 46fa43d67f Migrate to bulma-css-variables and introduce dark mode (#954)
Co-authored-by: Adrian Simmons <adrian@perlucida.co.uk>
Co-authored-by: Dominik Pschenitschni <mail@celement.de>
Co-authored-by: kolaente <k@knt.li>
Reviewed-on: vikunja/frontend#954
Reviewed-by: dpschen <dpschen@noreply.kolaente.de>
Reviewed-by: konrad <k@knt.li>
Co-authored-by: adrinux <adrian@perlucida.co.uk>
Co-committed-by: adrinux <adrian@perlucida.co.uk>
2021-11-22 21:12:54 +00:00

35 lines
642 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: var(--grey-100);
}
.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;
}
}
}