favycon/components/tool-title/index.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

28 lines
337 B
SCSS

@import '../../styles/variables.scss';
.root {
display: flex;
align-items: flex-start;
h1 {
color: $black;
}
svg {
max-height: 54px;
margin-top: 5px;
margin-right: 3px;
filter: drop-shadow(0 2px 4px rgba($black, 0.12));
}
}
:global(.dark) .root {
h1 {
color: $off-white-dark;
}
span {
color: $grey-dark;
}
}