Skip to content

Commit 64d2177

Browse files
committed
fix(web): add background and border to popover content
- Add padding, border, border-radius, and background to popover .content - Fixes popover appearing invisible without background styling
1 parent 5914a68 commit 64d2177

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

packages/web/src/components/ui/popover/index.module.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@
1212
overflow: auto;
1313
outline: none;
1414
z-index: var(--z-modal);
15+
padding: var(--sp-3);
16+
border: 1px solid var(--border);
17+
border-radius: var(--radius-lg);
18+
background: var(--bg-surface);
1519
}

0 commit comments

Comments
 (0)