Skip to content

Commit

Permalink
fix: 가운데 정렬 및 글씨 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Parkjinhye committed May 28, 2024
1 parent d58806c commit 68996a4
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/features/update-button/ui/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { colors, sizes } from '../../../shared/ui/styles/tokens.stylex';

export const styles = stylex.create({
teddyCategoryContainer: {
width: "1200px",
width: '1200px',
margin: '0 auto',
display: 'flex',
paddingLeft: '120px',
Expand Down
1 change: 1 addition & 0 deletions src/shared/ui/styles/tokens.stylex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export const sizes = stylex.defineVars({
title1_bold: '20px',
title2_medium: '14px',
body1_medium: '18px',
body1_medium_16: '16px',
body2_regular: '16px',
body3_regular: '14px',
caption1_regular: '12px',
Expand Down
1 change: 0 additions & 1 deletion src/views/teddy/ui/teddy-weekly.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ export const styles = stylex.create({
container: {
width: '1200px',
margin: '0 auto',
paddingLeft: '120px',
paddingTop: '115px',
},
});
Expand Down
3 changes: 2 additions & 1 deletion src/widgets/teddyIntro/ui/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export const styles = stylex.create({
},

content: {
fontSize: sizes.body1_medium,
fontSize: sizes.body1_medium_16,
lineHeight: '130%',
},

contentsContainer: {
Expand Down
1 change: 1 addition & 0 deletions src/widgets/teddyIntro/ui/teddyIntro.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import React from 'react';
import { styles } from './style';
import stylex from '@stylexjs/stylex';

Expand Down
1 change: 0 additions & 1 deletion src/widgets/teddyTop5/ui/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export const styles = stylex.create({
container: {
width: '1200px',
margin: '0 auto',
paddingLeft: '120px',
paddingTop: '115px',
},

Expand Down

0 comments on commit 68996a4

Please sign in to comment.