Skip to content

Commit d766d66

Browse files
authored
fix(compactSelect): Remove inherited bottom margin (#59139)
**Before ——** <img width="189" alt="Screenshot 2023-10-31 at 11 56 01 AM" src="https://github.com/getsentry/sentry/assets/44172267/e2c676f8-bb00-4390-a6e7-ec7a7e74ef2c"> **After ——** <img width="189" alt="Screenshot 2023-10-31 at 11 55 19 AM" src="https://github.com/getsentry/sentry/assets/44172267/7442ebdf-cfd4-4051-aa03-f3805e7092a3">
1 parent 97cd8e4 commit d766d66

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

static/app/styles/text.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ const textStyles = () => css`
99
h5,
1010
h6,
1111
p,
12-
ul,
13-
ol,
12+
/* Exclude ol/ul elements inside interactive selectors/menus */
13+
ul:not([role='listbox'], [role='grid']),
14+
ol:not([role='listbox'], [role='grid']),
1415
table,
1516
dl,
1617
blockquote,

0 commit comments

Comments
 (0)