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/components/task.scss
Adrian Simmons a45c6cdf6b
All checks were successful
continuous-integration/drone/pr Build is passing
Rename light-background variable to site-background
2021-11-08 20:53:03 +00:00

17 lines
419 B
SCSS

// FIXME: should be in TaskDetailView.vue
.link-share-container:not(.has-background) .task-view {
background: transparent;
}
// FIXME: should be a prop of TaskDetailView.vue
.modal-container .task-view {
border-radius: $radius;
padding: 1rem;
color: var(--text);
background-color: var(--site-background) !important;
@media screen and (max-width: 800px) {
border-radius: 0;
padding-top: 2rem;
}
}