Skip to content

Commit 21bbbf9

Browse files
committed
fix: set overflow hidden only on popup
1 parent 10d9478 commit 21bbbf9

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

src/popup/popup.svelte

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,9 @@
4949
<Header />
5050
<Sessions />
5151
<CommandPalette bind:open />
52+
53+
<style>
54+
:global(html, body) {
55+
overflow: hidden;
56+
}
57+
</style>

src/styles/global.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@
5959
html,
6060
body {
6161
height: 100%;
62-
overflow: hidden;
6362
}
6463

6564
body {

0 commit comments

Comments
 (0)