From 6f79c2d0d666bd205dda860e6eec5b9c4eed6dc3 Mon Sep 17 00:00:00 2001 From: Bastien DUMONT <bdumont@grandlyon.com> Date: Fri, 22 Apr 2022 15:38:53 +0000 Subject: [PATCH] fix/ loading bar 1px gap --- src/components/Splash/splashScreen.scss | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/components/Splash/splashScreen.scss b/src/components/Splash/splashScreen.scss index 03d956ea9..65590c61b 100644 --- a/src/components/Splash/splashScreen.scss +++ b/src/components/Splash/splashScreen.scss @@ -60,7 +60,8 @@ .splash-progress-bar-container { flex: 1; - height: 10px; + height: 12px; + box-sizing: border-box; background-image: linear-gradient( 45deg, #e3b82a 11.11%, @@ -75,9 +76,12 @@ border: solid 1px $gold-shadow; border-radius: 12px; .splash-progress-bar-content { - height: 11px; + height: 12px; + box-sizing: border-box; background-color: $gold-shadow; - border-radius: 12px 12px 0 12px; + border: solid 1px $gold-shadow; + border-radius: 12px 4px 0 12px; + border-right: none; transition: all 300ms ease; position: relative; overflow: hidden; -- GitLab