17 lines
288 B
SCSS
Vendored
17 lines
288 B
SCSS
Vendored
.topbar {
|
|
background-color: $medium;
|
|
width: initial;
|
|
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;
|
|
}
|
|
}
|
|
}
|