Skip to content

Commit 48e3cb6

Browse files
committed
fix: update padding for tag select option
1 parent 88da1e3 commit 48e3cb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Shared/Components/Plugin/PluginCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const PluginCard = ({
2626

2727
return (
2828
<div
29-
className={`p-12 flexbox dc__gap-16 dc__tab-focus plugin-card dc__visible-hover dc__visible-hover--parent ${showCardBorder ? 'dc__border br-4 dc__hover-n50' : 'dc__border-transparent dc__hover-border-n1'}`}
29+
className={`p-12 flexbox dc__gap-16 dc__tab-focus plugin-card dc__visible-hover dc__visible-hover--parent br-4 ${showCardBorder ? 'dc__border dc__hover-n50' : 'dc__border-transparent dc__hover-border-n1'}`}
3030
role="button"
3131
tabIndex={0}
3232
onClick={handleSelection}

src/Shared/Components/Plugin/utils.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export const pluginTagSelectStyles = {
8989
option: (base, state) => ({
9090
...base,
9191
height: '36px',
92-
padding: '8px 12px',
92+
padding: '8px 0px',
9393
backgroundColor: state.isFocused ? 'var(--N100)' : 'white',
9494
color: 'var(--N900)',
9595
cursor: 'pointer',

0 commit comments

Comments
 (0)