8000 feat: Use consistent colors for links and highlighting by AbhineetJain · Pull Request #1989 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

feat: Use consistent colors for links and highlighting #1989

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 3, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update user dropdown menu border
  • Loading branch information
AbhineetJain committed Jun 2, 2022
commit 73984783eee03f961e353c0269ca4e5cd490f271
4 changes: 2 additions & 2 deletions site/src/components/BorderedMenu/BorderedMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const useStyles = makeStyles((theme) => ({
},
paperRoot: {
width: "292px",
border: `2px solid ${theme.palette.primary.main}`,
border: `2px solid ${theme.palette.secondary.dark}`,
borderRadius: 7,
boxShadow: `4px 4px 0px ${fade(theme.palette.primary.main, 0.2)}`,
boxShadow: `4px 4px 0px ${fade(theme.palette.secondary.dark, 0.2)}`,
},
}))
0