Skip to content

Commit 2c4a54b

Browse files
committed
feat: css 수정
1 parent 25635e8 commit 2c4a54b

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

src/pages/deposit-search/deposit-search-page.css.ts

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ export const mainContainer = style({
1515
export const section = style({
1616
display: 'flex',
1717
flexDirection: 'column',
18-
gap: '1rem',
18+
gap: '0.2rem',
1919
marginBottom: '3rem',
2020
});
2121

2222
export const sectionTitle = style({
23-
fontSize: vars.size.md,
23+
fontSize: vars.size.lg,
24+
fontWeight: vars.weight.semibold,
2425
color: vars.color.black,
2526
marginBottom: '1rem',
2627
});
@@ -29,7 +30,7 @@ export const bankContainer = style({
2930
display: 'flex',
3031
flexDirection: 'column',
3132
width: '70rem',
32-
gap: '1rem',
33+
gap: '1.5rem',
3334
borderRadius: '10px',
3435
});
3536

@@ -66,6 +67,7 @@ export const bankLogo = style({
6667

6768
export const bankName = style({
6869
fontSize: vars.size.xxs,
70+
fontWeight: vars.weight.medium,
6971
color: vars.color.gray800,
7072
});
7173

@@ -87,9 +89,10 @@ export const selectAllButton = style({
8789
borderRadius: '5px',
8890
cursor: 'pointer',
8991
backgroundColor: vars.color.pink300,
90-
fontSize: vars.size.md,
91-
fontWeight: vars.weight.bold,
92-
padding: '0.5rem 1rem',
92+
fontSize: vars.size.sm,
93+
fontWeight: vars.weight.semibold,
94+
padding: '0.6rem 1rem',
95+
border: 'none',
9396
});
9497

9598
export const termContainer = style({
@@ -110,9 +113,9 @@ export const searchContainer = style({
110113
export const searchButton = style({
111114
backgroundColor: vars.color.pink300,
112115
color: vars.color.white,
113-
fontSize: vars.size.md,
114-
fontWeight: vars.weight.bold,
115-
padding: '0.5rem 1rem',
116+
fontSize: vars.size.sm,
117+
fontWeight: vars.weight.semibold,
118+
padding: '0.6rem 1rem',
116119
border: 'none',
117120
borderRadius: '5px',
118121
cursor: 'pointer',

src/pages/savings-search/savings-search-page.css.ts

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,13 @@ export const mainContainer = style({
1515
export const section = style({
1616
display: 'flex',
1717
flexDirection: 'column',
18-
gap: '1rem',
18+
gap: '0.2rem',
1919
marginBottom: '3rem',
2020
});
2121

2222
export const sectionTitle = style({
23-
fontSize: vars.size.md,
23+
fontSize: vars.size.lg,
24+
fontWeight: vars.weight.semibold,
2425
color: vars.color.black,
2526
marginBottom: '1rem',
2627
});
@@ -29,7 +30,7 @@ export const bankContainer = style({
2930
display: 'flex',
3031
flexDirection: 'column',
3132
width: '70rem',
32-
gap: '1rem',
33+
gap: '1.5rem',
3334
borderRadius: '10px',
3435
});
3536

@@ -66,6 +67,7 @@ export const bankLogo = style({
6667

6768
export const bankName = style({
6869
fontSize: vars.size.xxs,
70+
fontWeight: vars.weight.medium,
6971
color: vars.color.gray800,
7072
});
7173

@@ -87,9 +89,10 @@ export const selectAllButton = style({
8789
borderRadius: '5px',
8890
cursor: 'pointer',
8991
backgroundColor: vars.color.blue300,
90-
fontSize: vars.size.md,
91-
fontWeight: vars.weight.bold,
92-
padding: '0.5rem 1rem',
92+
fontSize: vars.size.sm,
93+
fontWeight: vars.weight.semibold,
94+
padding: '0.6rem 1rem',
95+
border: 'none',
9396
});
9497

9598
export const termContainer = style({
@@ -110,9 +113,9 @@ export const searchContainer = style({
110113
export const searchButton = style({
111114
backgroundColor: vars.color.blue300,
112115
color: vars.color.white,
113-
fontSize: vars.size.md,
114-
fontWeight: vars.weight.bold,
115-
padding: '0.5rem 1rem',
116+
fontSize: vars.size.sm,
117+
fontWeight: vars.weight.semibold,
118+
padding: '0.6rem 1rem',
116119
border: 'none',
117120
borderRadius: '5px',
118121
cursor: 'pointer',

0 commit comments

Comments
 (0)