Skip to content

Commit

Permalink
fix: divider color
Browse files Browse the repository at this point in the history
  • Loading branch information
lochie committed Feb 6, 2024
1 parent e398dfb commit 98ff303
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/connectkit/src/components/Common/ScrollArea/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ export const ScrollAreaContainer = styled.div<{
top: 0;
bottom: 0;
width: var(--fade-height);
background: var(--ck-body-divider);
background: var(
--ck-body-divider-secondary,
var(--ck-body-divider)
);
box-shadow: var(--ck-body-divider-box-shadow);
transition: opacity 300ms ease;
}
Expand Down Expand Up @@ -123,7 +126,10 @@ export const ScrollAreaContainer = styled.div<{
left: 0;
right: 0;
height: var(--fade-height);
background: var(--ck-body-divider);
background: var(
--ck-body-divider-secondary,
var(--ck-body-divider)
);
box-shadow: var(--ck-body-divider-box-shadow);
transition: opacity 300ms ease;
}
Expand Down
1 change: 1 addition & 0 deletions packages/connectkit/src/styles/themes/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export default {
'--ck-body-background-tertiary': '#F3F4F7',
'--ck-body-action-color': '#999999',
'--ck-body-divider': '#f7f6f8',
'--ck-body-divider-secondary': 'rgba(0, 0, 0, 0.06)',
'--ck-body-color-danger': '#FF4E4E',
'--ck-body-color-valid': '#32D74B',
'--ck-siwe-border': '#F0F0F0',
Expand Down

0 comments on commit 98ff303

Please sign in to comment.