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
50 lines
721 B
SCSS
50 lines
721 B
SCSS
@import '../../styles/variables.scss';
|
|
|
|
.unchecked {
|
|
fill: #f7f7f7;
|
|
stroke: #ccc;
|
|
stroke-width: 1.5px;
|
|
transition: all 100ms ease-in-out;
|
|
|
|
&.disabled {
|
|
fill: #ececec;
|
|
stroke: #ccc;
|
|
}
|
|
}
|
|
|
|
:global(.dark) .unchecked {
|
|
fill: $dark-grey;
|
|
stroke: $darker-black;
|
|
stroke-width: 1.5px;
|
|
|
|
&.disabled {
|
|
fill: $dark-black;
|
|
stroke: $darker-black;
|
|
}
|
|
}
|
|
|
|
.checkBg {
|
|
opacity: 0;
|
|
fill: $link;
|
|
transition: all 100ms ease-in-out;
|
|
transform: scale(0);
|
|
transform-origin: center;
|
|
}
|
|
|
|
.checkBgChecked {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
|
|
.checkMark {
|
|
stroke: #f7f7f8;
|
|
stroke-dasharray: 12;
|
|
stroke-dashoffset: 12;
|
|
transition: all 150ms 100ms ease-in-out;
|
|
}
|
|
|
|
.checkMarkChecked {
|
|
stroke: #fff;
|
|
stroke-dashoffset: 0;
|
|
}
|