mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-14 11:06:21 +05:00
* improvement(styles): update hovers and backgrounds * feat(about-us): add project link and contact email * chore(colors): update colors * chore(storybook): add Chromatic * chore: update repo info * chore(deps): upgrade dependencies * refactor: update colors and repo info * chore: remove chromatic * refactor(deps): upgrade react-dropzone to v11 * feat: update app icon * chore: update background image * chore: dark mode favicon
36 lines
559 B
SCSS
36 lines
559 B
SCSS
@import '../../styles/variables.scss';
|
|
|
|
.error {
|
|
position: absolute;
|
|
top: 26px;
|
|
right: 72px;
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 6px 13px 6px 16px;
|
|
background: $red;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 4px rgba($black, 0.12);
|
|
|
|
svg {
|
|
margin-left: 13px;
|
|
}
|
|
}
|
|
|
|
.progress {
|
|
stroke-dasharray: 44 44;
|
|
stroke-dashoffset: 0;
|
|
stroke-width: 2px;
|
|
transform: rotate(-90deg);
|
|
transform-origin: center;
|
|
animation: progress 5s linear 0.3s forwards;
|
|
}
|
|
|
|
@keyframes progress {
|
|
0% {
|
|
stroke-dashoffset: 0;
|
|
}
|
|
100% {
|
|
stroke-dashoffset: 44;
|
|
}
|
|
}
|