🎯 styled-component 위치 변경

🎯 화면 UI 수정


const TodoTemplateBlock = styled.div`
  width: 70%;
  ( X ) height: 800px;
	( O ) height: 100vh;

  min-width: 360px;
  max-width: 700px;

  position: relative;
  background: white;
  border-radius: 30px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);

  margin: 0 auto;

  ( X ) margin-top: 96px;
  ( X ) margin-bottom: 32px;
  display: flex;
  flex-direction: column;
`;

🎯 top, right, bottom, left 축약하기

const InsertForm = styled.form`
  display: flex;
	( O )
	padding : 36px 60px 36px 40px

	( X ) 
  padding-left: 40px;
  padding-top: 36px;
  padding-right: 60px;
  padding-bottom: 36px;
`;

🎯 의미 있는 컴포넌트명 수정, 불필요한 속성 제거

// TodoFooter.tsx
( X ) <LeftText className="tasks-left">{undoneTasks.length} items left</LeftText>

( O ) <CenterText>{undoneTasks.length} items left</CenterText>

🎯 마우스 포인터 설정