From 888d61a392a74370d0cab66e2119f49f4959efe7 Mon Sep 17 00:00:00 2001 From: Jonah <47046556+jwbonner@users.noreply.github.com> Date: Fri, 13 Sep 2024 22:38:07 -0400 Subject: [PATCH] Adjust loading glow height --- www/hub.css | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/www/hub.css b/www/hub.css index 41f457ab..fedec8d7 100644 --- a/www/hub.css +++ b/www/hub.css @@ -131,18 +131,12 @@ div.loading-glow { left: var(--side-bar-width); width: calc((100% - var(--side-bar-width)) * var(--loading-glow-progress)); top: 0px; - height: 3px; - transform: translateY(calc(-3px + 3px * var(--show-loading-glow))); + height: 4px; + transform: translateY(calc(-4px + 4px * var(--show-loading-glow))); transition: transform 0.3s; background-color: #303dc9; } -body.fancy-title-bar-win div.loading-glow { - /* Apparently Windows cuts off a few pixels on the top with a hidden title bar? */ - height: 5px; - transform: translateY(calc(-5px + 5px * var(--show-loading-glow))); -} - @keyframes publishingGlowPulsing { 0% { opacity: 100%;