We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1556dcd commit 1a40f95Copy full SHA for 1a40f95
src/styles/components/ToggleDarkMode.ts
@@ -4,12 +4,14 @@ export const ToggleDarkModeContainer = styled.div`
4
display: flex;
5
align-items: center;
6
justify-content: center;
7
- padding: 1rem; /* Using relative units for better responsiveness */
+ padding: 1rem;
8
9
/* Prevent clicks on the outer container */
10
pointer-events: none;
11
12
.dark-mode-toggle {
13
pointer-events: auto; /* Enable clicks only inside the actual toggle */
14
+ outline: 0.125rem solid white;
15
+ border-radius: 1.25rem;
16
}
17
`;
0 commit comments