Skip to content

Commit

Permalink
refactor: borderRadius use theme
Browse files Browse the repository at this point in the history
  • Loading branch information
tcsola authored and tcsola committed Oct 1, 2024
1 parent c56e847 commit eb65c39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/beta/features/AccountAndWorkSpaceSetting/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ const Wrapper = styled("div")(({ theme }) => ({
},
["* ::-webkit-scrollbar-track"]: {
background: theme.relative.darker,
borderRadius: "10px"
borderRadius: theme.radius.large
},
["* ::-webkit-scrollbar-thumb"]: {
background: theme.relative.light,
borderRadius: "4px"
borderRadius: theme.radius.small
},
["* ::-webkit-scrollbar-thumb:hover"]: {
background: theme.relative.lighter
Expand Down

0 comments on commit eb65c39

Please sign in to comment.