Skip to content

Commit

Permalink
반응형 패딩 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
riroan committed Mar 31, 2024
1 parent b5085a4 commit e2f9fa2
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions riroan/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
.DefaultContainer {
background-color: #fff;
line-height: 1.4;
padding: 50px;
font-family: "Pretendard"
font-family: 'Pretendard';
}

@media screen and (min-width: 768px) {
.DefaultContainer {
padding: 50px;
}
}

@media screen and (max-width: 767px) {
.DefaultContainer {
padding: 15px;
}
}

0 comments on commit e2f9fa2

Please sign in to comment.