Skip to content

Commit

Permalink
fix: Change PolicyRightSidebar buttons to blue (#2147)
Browse files Browse the repository at this point in the history
  • Loading branch information
anth-volk authored Nov 4, 2024
1 parent 7d292f1 commit 218662c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions src/controls/Button.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ export const buttonStyles = {
color: colors.WHITE,
},
},
primaryBlue: {
standard: {
backgroundColor: colors.BLUE_PRIMARY,
borderColor: colors.BLUE_PRIMARY,
color: colors.WHITE,
},
hover: {
backgroundColor: colors.BLUE_PRESSED,
borderColor: colors.BLUE_PRESSED,
color: colors.WHITE,
},
},
secondary: {
standard: {
backgroundColor: "transparent",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/policy/PolicySearch.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default function PolicySearch(props) {
)}
<Tooltip title="Use this policy; it will replace your current policy">
<Button
type="primary"
type="primaryBlue"
onClick={handleCheckmarkButton}
style={{
padding: "unset",
Expand Down

0 comments on commit 218662c

Please sign in to comment.