diff options
| author | 2026-01-14 22:20:41 +0100 | |
|---|---|---|
| committer | 2026-01-14 22:20:41 +0100 | |
| commit | 1b92b559a37166796d431ade745b31c4f73bc2ed (patch) | |
| tree | c3a3df2d4979f0a559a871778fbc0b11de35a28d /ui/src/components | |
| parent | 01201e1aca607c8f951ca847083890ad87a6f6c6 (diff) | |
| download | DropOut-1b92b559a37166796d431ade745b31c4f73bc2ed.tar.gz DropOut-1b92b559a37166796d431ade745b31c4f73bc2ed.zip | |
fix(ui): correct styling bugs and code quality issues
- Fix missing h- prefix in VersionsView height class (-40 → h-40)
- Correct typo in SaturnEffect comment (Warn → Warm White)
- Remove double space in App.svelte class attribute
Diffstat (limited to 'ui/src/components')
| -rw-r--r-- | ui/src/components/VersionsView.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/VersionsView.svelte b/ui/src/components/VersionsView.svelte index 8f3a568..99cc296 100644 --- a/ui/src/components/VersionsView.svelte +++ b/ui/src/components/VersionsView.svelte @@ -158,7 +158,7 @@ Fetching manifest... </div> {:else if filteredVersions().length === 0} - <div class="flex flex-col items-center justify-center -40 dark:text-white/30 text-black/30 gap-2"> + <div class="flex flex-col items-center justify-center h-40 dark:text-white/30 text-black/30 gap-2"> <span class="text-2xl">👻</span> <span>No matching versions found</span> </div> |