Skip to content

Commit df0fbf4

Browse files
committed
chore: fix Code button styling issue
1 parent f7c5fdf commit df0fbf4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/ui/components/CustomButtons/CodeActionButton.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,13 @@ const CodeActionButton: React.FC<CodeActionButtonProps> = ({ cloneURL }) => {
3838
padding: '6px 10px 6px 10px',
3939
fontWeight: 'bold',
4040
cursor: 'pointer',
41-
border: '1px solid rgba(240,246,252,0.1)',
41+
border: '1px solid rgba(2, 2, 2, 0.1)',
4242
boxSizing: 'border-box',
4343
whiteSpace: 'nowrap',
44+
display: 'inline-flex',
45+
alignItems: 'center',
46+
justifyContent: 'center',
47+
boxShadow: '0 1px 2px 1px rgba(0, 0, 0, 0.2)',
4448
}}
4549
onClick={handleClick('bottom-end')}
4650
>

0 commit comments

Comments
 (0)