이 작업을 마치면 위와 같은 화면이 나타날 것입니다. 이제 스타일을 작성할 차례인데요. CSS가 익숙하지 않다면, 가급적 브라우저를 한쪽 화면에 띄워 놓고 각 스타일 코드가 실제로 어떠한 변화를 주는지 확인하면서 작성해 보는 것을 추천합니다.

    TodoTemplate.scss

    .TodoTemplate {
      width: 512px;
      // width 주어진 상태에서 좌우 중앙 정렬
      margin-left: auto;
      margin-right: auto;
      margin-top: 6rem;
      border-radius: 4px;
      overflow: hidden;
     
      .app-title {
        background: #22b8cf;
        color: white;
        height: 4rem;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .content {
        background: white;
      }
    }

    신간 소식 구독하기
    뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.