feat: merge switch-view.scss with component styles

This commit is contained in:
Dominik Pschenitschni 2021-10-18 14:21:53 +02:00
parent 725d6018b9
commit 07b4780912
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
3 changed files with 45 additions and 44 deletions

View File

@ -1,7 +1,6 @@
@import "tooltip";
@import "labels";
@import "list";
@import "switch-view";
@import "task";
@import "taskRelations";
@import "tasks";

View File

@ -1,43 +0,0 @@
.switch-view {
background: $white;
display: inline-flex;
border-radius: $radius;
font-size: .75rem;
box-shadow: $shadow-sm;
height: $switch-view-height;
margin-bottom: 1rem;
padding: .5rem;
a {
padding: .25rem .5rem;
display: block;
border-radius: $radius;
transition: all 100ms;
&:not(:last-child) {
margin-right: .5rem;
}
&.is-active, &:hover {
color: $white;
}
&.is-active {
background: $primary;
font-weight: bold;
box-shadow: $shadow-xs;
}
&:hover {
background: $primary;
}
}
}
@media screen and (max-width: $tablet) {
.switch-view-container {
display: flex;
justify-content: center;
}
}

View File

@ -150,6 +150,51 @@ export default {
</script>
<style lang="scss" scoped>
.switch-view-container {
@media screen and (max-width: $tablet) {
display: flex;
justify-content: center;
}
}
.switch-view {
background: $white;
display: inline-flex;
border-radius: $radius;
font-size: .75rem;
box-shadow: $shadow-sm;
height: $switch-view-height;
margin-bottom: 1rem;
padding: .5rem;
a {
padding: .25rem .5rem;
display: block;
border-radius: $radius;
transition: all 100ms;
&:not(:last-child) {
margin-right: .5rem;
}
&.is-active,
&:hover {
color: $white;
}
&.is-active {
background: $primary;
font-weight: bold;
box-shadow: $shadow-xs;
}
&:hover {
background: $primary;
}
}
}
.is-archived .notification.is-warning {
margin-bottom: 1rem;
}