Skip to content

Commit

Permalink
fix: Apply improved button styles
Browse files Browse the repository at this point in the history
  • Loading branch information
m453h committed Jun 20, 2024
1 parent b609942 commit ae14b2c
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions apps/roboshield/src/components/Code/Code.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ export default function Code(props: CodeProps) {
variant="contained"
sx={{
mt: 2,
background: "#009688",
border: "1px solid #009688",
background: "#000000",
border: "1px solid #000000",
"&:hover": {
background: "none",
color: "#009688",
color: "#000000",
},
}}
onClick={onDownload}
Expand All @@ -70,11 +70,11 @@ export default function Code(props: CodeProps) {
variant="contained"
sx={{
mt: 2,
background: "#b28704",
border: "1px solid #b28704",
background: "#FE2500",
border: "1px solid #FE2500",
"&:hover": {
background: "none",
color: "#b28704",
color: "#FE2500",
},
}}
onClick={onReset}
Expand All @@ -83,15 +83,13 @@ export default function Code(props: CodeProps) {
Reset
</Button>
<Button
variant="contained"
color="secondary"
variant="outlined"
color="primary"
sx={{
mt: 2,
background: "#000000",
border: "1px solid #000000",
border: "none",
"&:hover": {
background: "none",
color: "#000000",
border: "none",
},
}}
onClick={onBack}
Expand Down

0 comments on commit ae14b2c

Please sign in to comment.