Skip to content

Commit

Permalink
10.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
green1052 committed Dec 6, 2023
1 parent e8b7702 commit 176d3f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/module/Setting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ function Setting() {
height: 50px;
box-shadow: rgb(0 0 0 / 16%) 0 1px 4px 0;
${isDarkMode()
? css`background-color: black;
? css`background-color: black;
color: white;`
: css`background-color: white;`};
: css`background-color: white;`};
`;

const UnderDiv = styled.div`
Expand All @@ -176,9 +176,9 @@ function Setting() {
height: 30px;
box-shadow: rgb(0 0 0 / 16%) 0 1px 4px 0;
${isDarkMode()
? css`background-color: black;
? css`background-color: black;
color: white;`
: css`background-color: white;`};
: css`background-color: white;`};
`;

return (
Expand Down

0 comments on commit 176d3f0

Please sign in to comment.