vikunja/src/styles/components/switch-view.scss

44 lines
716 B
SCSS
Raw Normal View History

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