Skip to content

Commit

Permalink
fixed quorum slider
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiolalombardim committed Dec 2, 2023
1 parent 6785736 commit cf3db0f
Show file tree
Hide file tree
Showing 2 changed files with 383 additions and 209 deletions.
6 changes: 4 additions & 2 deletions src/modules/common/ChangeNetworkButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,16 @@ const StyledConnectedButton = styled(Box)(({ theme }: { theme: Theme }) => ({
"& > *": {
height: "100%"
},
"background": theme.palette.primary.dark,
"background": "rgb(47, 52, 56)",
"height": 23,
"borderRadius": 8,
"paddingLeft": 16,
"paddingRight": 16,
"paddingTop": 5,
"paddingBottom": 6,
"cursor": "pointer",
"transition": ".15s ease-out",
"color": "#fff",

"&:hover": {
background: theme.palette.secondary.dark,
Expand Down Expand Up @@ -54,7 +56,7 @@ export const ChangeNetworkButton = () => {
<ColorDot color={networkDotColorMap[network]} />
</Grid>
<Grid item>
<Typography color="textPrimary" variant="body2">
<Typography style={{ fontWeight: 400 }} variant="body2">
{capitalize(network)}
</Typography>
</Grid>
Expand Down
Loading

0 comments on commit cf3db0f

Please sign in to comment.