Skip to content

Commit

Permalink
Fix for incorrect colors
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Dec 12, 2023
1 parent 0892776 commit 1d4e834
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dapp/src/components/Sidebar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ export default function Sidebar() {
<Box
p={4}
h="100%"
bg="gold.200"
borderTop="2px"
borderLeft="2px"
borderColor="white"
borderColor="gold.100"
borderTopLeftRadius="xl"
>
{/* TODO: Add a correct content for the sidebar */}
Expand Down
2 changes: 1 addition & 1 deletion dapp/src/theme/Drawer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Drawer: ComponentSingleStyleConfig = {
boxShadow: "none",
borderColor: "white",
borderTopLeftRadius: "xl",
bg: "gold.200",
bg: "gold.100",
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion dapp/src/theme/Modal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Modal: ComponentSingleStyleConfig = {
top: -10,
right: -10,
rounded: "100%",
bg: "gold.100",
bg: "rgba(255, 255, 255, 0.50)",
},
},
}
Expand Down

0 comments on commit 1d4e834

Please sign in to comment.