Skip to content

Commit

Permalink
design: button 수평 padding 0 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiacho committed Aug 10, 2024
1 parent 0fad844 commit 386ca25
Showing 1 changed file with 26 additions and 12 deletions.
38 changes: 26 additions & 12 deletions src/views/MyPage/style.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,31 @@ export const buttonValue = style([
},
]);

const buttonWidth = style({
paddingLeft: 0,
paddingRight: 0,
});

export const buttonWidthVar = styleVariants({
DESK: {
width: 132,
letterSpacing: '-0.36px',
},
TAB: {
width: 132,
letterSpacing: '-0.36px',
},
MOB: {
width: 111,
letterSpacing: '-0.24px',
},
DESK: [
buttonWidth,
{
width: 132,
letterSpacing: '-0.36px',
},
],
TAB: [
buttonWidth,
{
width: 132,
letterSpacing: '-0.36px',
},
],
MOB: [
buttonWidth,
{
width: 111,
letterSpacing: '-0.24px',
},
],
});

0 comments on commit 386ca25

Please sign in to comment.