Skip to content

Commit 78582ba

Browse files
committed
fix: style 수정
1 parent ff44bb1 commit 78582ba

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

src/page/mandal/component/Toggle/Toggle.css.ts

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,20 @@ export const toggleButton = style([
2626
},
2727
]);
2828

29-
export const leftActiveButton = style({
29+
const activeButtonBase = style({
3030
backgroundImage: colors.gradient05,
31-
borderRadius: '0.8rem 0 0 0.8rem',
3231
});
3332

34-
export const rightActiveButton = style({
35-
backgroundImage: colors.gradient05,
36-
borderRadius: '0 0.8rem 0.8rem 0',
37-
});
33+
export const leftActiveButton = style([
34+
activeButtonBase,
35+
{
36+
borderRadius: '8px 0 0 8px',
37+
},
38+
]);
39+
40+
export const rightActiveButton = style([
41+
activeButtonBase,
42+
{
43+
borderRadius: '0 8px 8px 0',
44+
},
45+
]);

0 commit comments

Comments
 (0)