Skip to content

Commit 9c183a1

Browse files
committed
fix: css 최소 단위 통일화 #46
1 parent 3c79b99 commit 9c183a1

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

frontend/src/components/NicknameList/NicknameList.styled.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { css } from '@emotion/react';
33
export const nicknameListLayout = css`
44
display: flex;
55
justify-content: space-around;
6-
width: 24.5rem;
7-
height: 15.4rem;
6+
width: 24.4rem;
7+
height: 15.8rem;
88
`;
99

1010
export const nicknameContainer = css`

frontend/src/components/RoundVoteResult/RoundVoteResult.styled.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export const roundVoteResultLayout = ({ percentage }: RoundVoteResultLayoutProps
1010
display: flex;
1111
justify-content: space-around;
1212
align-items: center;
13-
width: 24.5rem;
14-
height: 11rem;
13+
width: 24rem;
14+
height: 11.6rem;
1515
1616
font-size: 1.2rem;
1717
background: linear-gradient(

frontend/src/components/SelectContainer/SelectContainer.styled.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const selectContainerLayout = css`
55
flex-direction: column;
66
justify-content: center;
77
align-items: center;
8-
gap: 5rem;
8+
gap: 4rem;
99
flex-basis: 55%;
1010
`;
1111

frontend/src/components/SelectOption/SelectOption.styled.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const SelectOptionLayout = (selected: boolean) => css`
66
display: flex;
77
justify-content: center;
88
align-items: center;
9-
width: 11.4rem;
9+
width: 11.6rem;
1010
height: 16.8rem;
1111
padding: 1.6rem;
1212

frontend/src/components/TopicContainer/TopicContainer.styled.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const topicContainerLayout = css`
1111

1212
export const categoryText = css`
1313
font-weight: bold;
14-
font-size: 1.4rem;
14+
font-size: 1.2rem;
1515
`;
1616

1717
export const topicText = css`

frontend/src/components/layout/Header/Header.styled.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const headerLayout = css`
44
display: flex;
55
justify-content: space-between;
66
align-items: center;
7-
height: 7rem;
7+
height: 8rem;
88
`;
99

1010
export const gameTitle = css`

frontend/src/pages/NicknamePage/NicknamePage.styled.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const nicknameInputWrapper = css`
2323
display: flex;
2424
align-items: center;
2525
width: 26.8rem;
26-
height: 4.9rem;
26+
height: 4.8rem;
2727
padding: 0 1rem;
2828
2929
background-color: ${Theme.color.gray200};

frontend/src/pages/RoundResultPage/RoundResultPage.styled.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import { css } from '@emotion/react';
22

33
export const NicknameListWrapper = css`
44
margin-top: 1.6rem;
5-
margin-bottom: 0.7rem;
5+
margin-bottom: 0.8rem;
66
`;

0 commit comments

Comments
 (0)