Skip to content

Commit

Permalink
style: style 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
miro-ring committed Jan 16, 2024
1 parent c3268ae commit 5ffef49
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions src/components/Dialog/style.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ export const dialogRoot = recipe({
});

export const dialogTitle = style({
position: 'relative',
padding: '6px 12px 10px',
lineHeight: '40px',
});

export const line = style({
Expand Down Expand Up @@ -72,3 +74,71 @@ export const dialogButton = recipe({
},
},
});

export const badge = style([
sprinkles({
typography: '11/Caption/Medium',
}),
{
marginLeft: '4px',
backgroundColor: COLORS['Blue/Light'],
color: COLORS['Blue/Default'],
width: '32px',
height: '20px',
display: 'inline-block',
verticalAlign: 'middle',
marginTop: '-2px',
padding: '3px 6px',
borderRadius: '100px',
},
]);

export const iconTitleText = style([
sprinkles({
typography: '16/Title/Medium',
}),
{
color: COLORS['Grey/900'],
marginLeft: '48px',
},
]);

export const iconMediumText = style([
sprinkles({
typography: '15/Body/Medium',
}),
{
color: COLORS['Grey/400'],
marginLeft: '28px',
},
]);

export const iconRegularText = style([
sprinkles({
typography: '15/Body/Regular',
}),
{
color: COLORS['Grey/800'],
marginLeft: '28px',
},
]);

export const addIcon = style({
position: 'absolute',
});

export const circle = style({
width: '40px',
height: '40px',
backgroundColor: COLORS['Grey/100'],
position: 'absolute',
top: '6px',
borderRadius: '50%',
zIndex: -1,
});

export const profileIcon = style({
position: 'absolute',
top: '13px',
left: '20px',
});

0 comments on commit 5ffef49

Please sign in to comment.