feature/move-styles-to-components #874

Merged
konrad merged 45 commits from dpschen/frontend:feature/move-styles-to-components into main 2021-10-21 19:11:18 +00:00
2 changed files with 2 additions and 11 deletions
Showing only changes of commit 7a95d08e1e - Show all commits

View File

@ -102,10 +102,6 @@ export default {
</script>
<style lang="scss" scoped>
// FIXME: should be @use so that classes dont get imported twice
// needed for
// - $card-shadow
@import "bulma/sass/components/card.sass";
.color-picker-container {
display: flex;
justify-content: center;
@ -132,7 +128,7 @@ export default {
overflow: hidden;
border-radius: 100%;
border: $BORDER_WIDTH solid $grey-300;
box-shadow: $card-shadow;
box-shadow: $shadow;
& > * {
grid-row: 1;

View File

@ -245,11 +245,6 @@ export default {
</script>
<style lang="scss" scoped>
// FIXME: should be @use so that classes dont get imported twice
@import "bulma/sass/components/card.sass";
// needed for
// - $card-shadow
.datepicker {
input.input {
display: none;
@ -265,7 +260,7 @@ export default {
width: 320px;
background: $white;
border-radius: $radius;
box-shadow: $card-shadow;
box-shadow: $shadow;
@media screen and (max-width: ($tablet)) {
width: calc(100vw - 5rem);