MainPage.scss 1.41 KB
#Main{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  .Main-header{
    display: flex;
    flex-direction: row;
    .title{
      display: flex;
      justify-content: center;
      width: 90%;
      height: 60px;
      .h1{
        font-size: 60px;
        font-weight: bold;
      }
    }
    .None-title{
      width: 10%;
      .ui button{
        height: 40px;
      }
    }
  }
  .Main-body{
    display: flex;
    flex-direction: row;
    height: 100vh;
    .contents-container{
      display: flex;
      justify-content: flex-start;
      flex-direction: column;
      width: 75%;
      height: 100%;
      border: 2px solid black;
      .write-button{
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .contents{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        .Grid{
          display: flex;
          justify-content: center;
          align-items: center;
        }
      }
    }
    .user-container{
      display: flex;
      flex-direction: column;
      width: 25%;
      border: 2px solid black;
      .userInfo{
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .checkIssue-button{
        height: 70px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
    }
  }
}