Merge pull request #25 from Fluffy-Bean/deepsource-transform-41dc1605

style: format code with Prettier
This commit is contained in:
Michał 2024-05-20 12:17:52 +01:00 committed by GitHub
commit 80e601cf99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,18 +6,19 @@ $loading-box-padding: 1px;
border-radius: $border-radius-large;
background: linear-gradient(
to right,
rgba($color-dark, 0) 8%,
rgba($color-dark, 0.3) 38%,
rgba($color-dark, 0) 54%
) no-repeat;
to right,
rgba($color-dark, 0) 8%,
rgba($color-dark, 0.3) 38%,
rgba($color-dark, 0) 54%
)
no-repeat;
background-size: 1500px 100%;
animation: loading-box-glow 1s infinite linear;
overflow: hidden;
&::after {
content: '';
content: "";
position: absolute;
top: $loading-box-padding;
@ -34,10 +35,10 @@ $loading-box-padding: 1px;
}
@keyframes loading-box-glow {
0%{
background-position: -750px 0
0% {
background-position: -750px 0;
}
100%{
background-position: 750px 0
100% {
background-position: 750px 0;
}
}
}