Skip to content

Commit

Permalink
update divider
Browse files Browse the repository at this point in the history
  • Loading branch information
karenyov committed Apr 6, 2023
1 parent f7bfd20 commit 56c1e68
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Divider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export default function Divider({ ...rest }: DividerProps) {

return (
<DividerBase
{...rest}
{...rest}
mt={2}
borderColor={colorMode === "dark" ? "secondary.900" : "gray.200"}
borderColor={colorMode === "dark" ? "gray.200" : "gray.200"}
/>
);
}
2 changes: 1 addition & 1 deletion src/components/Spinner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Spinner({ color = "blue.500", size="lg", ...rest }: Prop
<SpinnerBase
thickness="4px"
speed="0.65s"
emptyColor="gray.200"
emptyColor="primary.500"
color={color}
size={size}
{...rest}
Expand Down
2 changes: 2 additions & 0 deletions src/styles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ export const theme = extendTheme({
500: "#805AD5",
600: "#6B46C1",
700: "#553C9A",
800: "#44337A",
900: "#322659",
},

secondary: {
Expand Down

0 comments on commit 56c1e68

Please sign in to comment.