mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2025-05-29 06:43:12 +00:00
style: format code with Prettier
This commit fixes the style issues introduced in d2a637f
according to the output
from Prettier.
Details: None
This commit is contained in:
parent
d2a637f8d6
commit
c890f6fcb4
1 changed files with 12 additions and 11 deletions
|
@ -6,18 +6,19 @@ $loading-box-padding: 1px;
|
||||||
border-radius: $border-radius-large;
|
border-radius: $border-radius-large;
|
||||||
|
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
to right,
|
to right,
|
||||||
rgba($color-dark, 0) 8%,
|
rgba($color-dark, 0) 8%,
|
||||||
rgba($color-dark, 0.3) 38%,
|
rgba($color-dark, 0.3) 38%,
|
||||||
rgba($color-dark, 0) 54%
|
rgba($color-dark, 0) 54%
|
||||||
) no-repeat;
|
)
|
||||||
|
no-repeat;
|
||||||
background-size: 1500px 100%;
|
background-size: 1500px 100%;
|
||||||
animation: loading-box-glow 1s infinite linear;
|
animation: loading-box-glow 1s infinite linear;
|
||||||
|
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
content: '';
|
content: "";
|
||||||
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: $loading-box-padding;
|
top: $loading-box-padding;
|
||||||
|
@ -34,10 +35,10 @@ $loading-box-padding: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes loading-box-glow {
|
@keyframes loading-box-glow {
|
||||||
0%{
|
0% {
|
||||||
background-position: -750px 0
|
background-position: -750px 0;
|
||||||
}
|
}
|
||||||
100%{
|
100% {
|
||||||
background-position: 750px 0
|
background-position: 750px 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue