Skip to content

Commit

Permalink
[#16] design: 제목 align-items: center
Browse files Browse the repository at this point in the history
  • Loading branch information
intersoom committed Aug 7, 2023
1 parent fa3104a commit 9e6c2c1
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions pages/questionWrite/atoms/FieldSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import styled from 'styled-components';
import theme from '@/styles/theme';
import Spacing from '@/components/reusable/Spacing';
import ToggleBtn from '@/components/reusable/Buttons/ToggleBtn';
import { useEffect } from 'react';
import { useRecoilState } from 'recoil';
import fieldListState from '@/states/fieldListState';
import QuestionTitle from './QuestionTitle';
Expand All @@ -29,10 +28,6 @@ const FieldSelector = () => {
}
};

useEffect(() => {
console.log(fieldList);
}, [fieldList]);

return (
<section>
<Spacing size={32} direction="vertical" />
Expand Down Expand Up @@ -111,10 +106,11 @@ export default FieldSelector;
const QuestionTitleWrap = styled.div`
display: flex;
flex-direction: row;
align-items: center;
`;

const Tip = styled.div`
font-size: ${theme.fontStyles.Text_S.fontSize};
font-size: ${theme.fontStyles.Text_S.fontSize}px;
font-weight: ${theme.fontStyles.Text_S.fontWeight};
`;

Expand Down

0 comments on commit 9e6c2c1

Please sign in to comment.