bug(ui): off-brand thin lavender bar appears at the top of every page #96
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Severity: Medium — visual glitch on every page
A thin (~3px) lavender/purple stripe (
~#7B68EE) is visible at the very top of the viewport on every single page in both light and dark mode. It appears to be either a SvelteKit page-transition progress indicator or a stray global CSS border.This color is not part of the brand palette and reads as an unintentional glitch.
Fix
If it is a SvelteKit NProgress / nprogress loading bar: scope it so it only appears during navigation (i.e.
display: nonein its idle/complete state) and change its color to#A6DAD8(brand-mint) to align with the palette.If it is a stray CSS
border-topon<body>or the root layout: locate and remove it. Checkapp.css,+layout.svelte, and any global style imports.To identify the source, inspect the element in DevTools — it will be either on
<body>,<html>, or a fixed-position progress bar element.