diff options
| author | Fuwn <[email protected]> | 2025-05-14 01:45:15 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-14 01:45:15 -0700 |
| commit | 8e582c8ae23eb87ce997fd16bd315dbcc89a854d (patch) | |
| tree | 6ac29a570faaa6f9db38698bd0e25bc46917b734 /src | |
| parent | feat(CommandPalette): Animate search results (diff) | |
| download | due.moe-8e582c8ae23eb87ce997fd16bd315dbcc89a854d.tar.xz due.moe-8e582c8ae23eb87ce997fd16bd315dbcc89a854d.zip | |
fix(CommandPalette): Hide scrollbar pop in
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/CommandPalette/CommandPalette.svelte | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/CommandPalette/CommandPalette.svelte b/src/lib/CommandPalette/CommandPalette.svelte index 538eea98..4d3ce3e5 100644 --- a/src/lib/CommandPalette/CommandPalette.svelte +++ b/src/lib/CommandPalette/CommandPalette.svelte @@ -178,6 +178,12 @@ max-height: 60vh; overflow-y: auto; overflow-x: hidden; + scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; /* IE/Edge */ + } + + .results-container::-webkit-scrollbar { + display: none; /* WebKit */ } .command-palette-overlay { |