From c890f6fcb47abb3f7b0c601fa89d8145d266e240 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 11:15:52 +0000 Subject: [PATCH] style: format code with Prettier This commit fixes the style issues introduced in d2a637f according to the output from Prettier. Details: None --- front/src/styles/_loading_box.scss | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/front/src/styles/_loading_box.scss b/front/src/styles/_loading_box.scss index cccb540..1a7b998 100644 --- a/front/src/styles/_loading_box.scss +++ b/front/src/styles/_loading_box.scss @@ -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; } -} \ No newline at end of file +}