Skip to content

Commit b6d93df

Browse files
authored
Improved icon stacking in Analytics filters (#25652)
ref https://linear.app/ghost/issue/NY-855/improve-icon-stacking-in-filters - Icons for Audience were stacking on top of each other which looked like a bug
1 parent 7f7be8e commit b6d93df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/shade/src/components/ui/filters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,7 @@ function SelectOptionsPopover<T = unknown>({
11951195
) : (
11961196
<>
11971197
{selectedOptions.length > 0 && (
1198-
<div className={cn('-space-x-1.5 flex items-center', field.selectedOptionsClassName)}>
1198+
<div className={cn('-space-x-0.5 flex items-center', field.selectedOptionsClassName)}>
11991199
{selectedOptions.slice(0, 3).map(option => (
12001200
<div key={String(option.value)}>{option.icon}</div>
12011201
))}

0 commit comments

Comments
 (0)