Skip to content

Commit

Permalink
fix(tablekit-react-select): update various visuals
Browse files Browse the repository at this point in the history
  • Loading branch information
k-baldauf committed Jun 7, 2024
1 parent 52429b3 commit 04e52c1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion system/core/src/components/MenuItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const fullStylesObject: CSSObject = {
'&, &:any-link, &:hover': {
color: 'var(--text)'
},
padding: 'var(--spacing-l3)',
padding: 'var(--spacing-l2)',
borderRadius: 'var(--border-radius-small)',
display: 'grid',
gridGap: 'var(--spacing-l2)',
Expand Down
4 changes: 4 additions & 0 deletions system/core/src/components/MenuList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ export const fullStylesObject: CSSObject = {
gridGap: 'var(--spacing-l1)',
listStyle: 'none',
alignItems: 'stretch',
borderColor: 'var(--border-transparent)',
borderRadius: 'var(--border-radius-small)',
borderStyle: 'solid',
borderWidth: '1px',
'& > li': {
display: 'flex',
justifyContent: 'stretch'
Expand Down
4 changes: 2 additions & 2 deletions system/core/src/themeVariables/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ export const darkColors = css`
--surface-disabled: rgba(75, 75, 75, 1);
--surface-hover: rgba(41, 41, 41, 1);
--surface-hover-transparent: rgba(255, 255, 255, 0.05);
--surface-low: rgba(18, 18, 18, 1);
--surface-low: rgba(26, 26, 26, 1);
--surface-low-active: rgba(76, 68, 92, 1);
--surface-low-hover: rgba(41, 41, 41, 1);
--surface-low-hover-transparent: rgba(255, 255, 255, 0.05);
Expand Down Expand Up @@ -277,7 +277,7 @@ export const darkColorsObject = {
'surface-disabled': 'rgba(75, 75, 75, 1)',
'surface-hover': 'rgba(41, 41, 41, 1)',
'surface-hover-transparent': 'rgba(255, 255, 255, 0.05)',
'surface-low': 'rgba(18, 18, 18, 1)',
'surface-low': 'rgba(26, 26, 26, 1)',
'surface-low-active': 'rgba(76, 68, 92, 1)',
'surface-low-hover': 'rgba(41, 41, 41, 1)',
'surface-low-hover-transparent': 'rgba(255, 255, 255, 0.05)',
Expand Down

0 comments on commit 04e52c1

Please sign in to comment.