favycon/components/svgs/svg-drop-zone.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

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;
}