We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff44bb1 commit 78582baCopy full SHA for 78582ba
src/page/mandal/component/Toggle/Toggle.css.ts
@@ -26,12 +26,20 @@ export const toggleButton = style([
26
},
27
]);
28
29
-export const leftActiveButton = style({
+const activeButtonBase = style({
30
backgroundImage: colors.gradient05,
31
- borderRadius: '0.8rem 0 0 0.8rem',
32
});
33
34
-export const rightActiveButton = style({
35
- backgroundImage: colors.gradient05,
36
- borderRadius: '0 0.8rem 0.8rem 0',
37
-});
+export const leftActiveButton = style([
+ activeButtonBase,
+ {
+ borderRadius: '8px 0 0 8px',
+ },
38
+]);
39
+
40
+export const rightActiveButton = style([
41
42
43
+ borderRadius: '0 8px 8px 0',
44
45
0 commit comments