Skip to content

Commit

Permalink
fix: 이름 입력 폼 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SEOmarkup committed Nov 5, 2024
1 parent da6d439 commit fa8a3d2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,16 @@
}

/* 반응형 모바일 사이즈 */
@media (max-width: 767px) and (min-width: 375px) {
@media (max-width: 767px) {
.subjectCreateForm {
width: 305px;
height: 156px;
}

.inputName {
width: 100%;
input {
width: 100%;
}
}
}
4 changes: 2 additions & 2 deletions src/pages/HomePage.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@
width: 456px;
}

/* 반응형 태블릿 사이즈 h832 */
/* 반응형 태블릿 사이즈 */
@media (max-width: 1200px) and (min-width: 768px) {
.wrap {
padding: 67px 0;
}
}

/* 반응형 모바일 사이즈 */
@media (max-width: 767px) and (min-width: 375px) {
@media (max-width: 767px) {
.wrap {
background-size: 120% auto;
padding: 47px 0;
Expand Down

0 comments on commit fa8a3d2

Please sign in to comment.