diff options
| author | Fuwn <[email protected]> | 2025-05-14 01:46:41 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-14 01:46:47 -0700 |
| commit | ac0b4ce8370ac95336a2972d24ea9dfcd3a624c4 (patch) | |
| tree | 093f0225f0b9ebbfff46224d8e1ddf9b3ab55ff2 /src/lib | |
| parent | fix(CommandPalette): Hide scrollbar pop in (diff) | |
| download | due.moe-ac0b4ce8370ac95336a2972d24ea9dfcd3a624c4.tar.xz due.moe-ac0b4ce8370ac95336a2972d24ea9dfcd3a624c4.zip | |
fix(CommandPalette): Single result sized padding for no results text
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/CommandPalette/CommandPalette.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/CommandPalette/CommandPalette.svelte b/src/lib/CommandPalette/CommandPalette.svelte index 4d3ce3e5..79d4698f 100644 --- a/src/lib/CommandPalette/CommandPalette.svelte +++ b/src/lib/CommandPalette/CommandPalette.svelte @@ -170,7 +170,7 @@ } .no-results { - padding: 0.75em; + padding: 1em; text-align: center; } @@ -181,7 +181,7 @@ scrollbar-width: none; /* Firefox */ -ms-overflow-style: none; /* IE/Edge */ } - + .results-container::-webkit-scrollbar { display: none; /* WebKit */ } |