Skip to content

Commit

Permalink
fix it for the dark theme
Browse files Browse the repository at this point in the history
  • Loading branch information
cphelefu committed Feb 21, 2024
1 parent 17639e8 commit cece7b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const globalStyleOverrides = (geoViewColors: IGeoViewColors) => ({
},

'.bordered': {
border: `2px solid ${geoViewColors.bgColor.darken(0.1, 0.9)}`,
border: `2px solid ${geoViewColors.bgColor.darken(0.5, 0.5)}`,
},
'.bordered-primary': {
border: `2px solid ${geoViewColors.primary.darken(0.1, 0.9)}`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ export const generateThemeOptions = (geoViewColors: IGeoViewColors = defaultGeoV
root: {
borderRadius: 5,
borderWith: '2px',
borderColor: geoViewColors.bgColor.darken(0.1, 0.9),
borderColor: geoViewColors.bgColor.darken(0.5, 0.5),
borderStyle: 'solid',
boxShadow: 'none',
},
Expand Down

0 comments on commit cece7b2

Please sign in to comment.