favycon/components/favycon-error/index.module.scss
Rui Saraiva 3ad6bcd128
feat(styles): update hovers and backgrounds (#60)
* 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
2020-05-11 18:41:59 +01:00

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