favycon/components/svgs/svg-info.module.scss
Rui Saraiva 785563a71c
feat: upgrade dependencies (#480)
* feat: upgrade dependencies

* chore: update linter and CI workflows

* chore: upgrade browserslist
2021-12-04 18:32:53 +00:00

36 lines
392 B
SCSS

@import '../../styles/variables.scss';
.background {
fill: #f2f8fa;
transition: fill 0.2s ease;
&.active {
fill: $link;
}
}
:global(.dark) .background {
fill: $dark-grey;
&.active {
fill: $link-dark;
}
}
.text {
fill: #4b67d6;
transition: fill 0.2s ease;
&.active {
fill: $link;
}
}
:global(.dark) .text {
fill: $off-white-dark;
&.active {
fill: $link-dark;
}
}