Skip to content

Commit

Permalink
Adjust loading glow height
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Sep 14, 2024
1 parent 5dca436 commit 888d61a
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions www/hub.css
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
Expand Down

0 comments on commit 888d61a

Please sign in to comment.