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

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,
.list-table .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;
}
}
}