Files
portal/resources/sass/components/topbar.scss
2020-04-04 11:47:48 +02:00

17 lines
300 B
SCSS
Vendored

.topbar {
background-color: $medium;
width: calc(100vw - 15rem);
box-shadow: 3px 2px 3px rgba(0,0,0,0.2);
svg {
width: 3rem;
fill: $light;
transition: fill 0.2s;
&:hover {
fill: $dark;
transition: fill 0.2s;
}
}
}