mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-14 11:06:21 +05:00
* feat: upgrade dependencies * chore: update linter and CI workflows * chore: upgrade browserslist
15 lines
197 B
SCSS
15 lines
197 B
SCSS
@import '../../styles/variables.scss';
|
|
|
|
.rect {
|
|
stroke: #ccc;
|
|
transition: stroke 0.2s ease;
|
|
|
|
@include breakpoint-md {
|
|
stroke-width: 0;
|
|
}
|
|
}
|
|
|
|
:global(.dark) .rect {
|
|
stroke: $off-white-dark;
|
|
}
|