mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-12 19:51:07 +05:00
* feat: upgrade dependencies * chore: update linter and CI workflows * chore: upgrade browserslist
28 lines
337 B
SCSS
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;
|
|
}
|
|
}
|