Skip to content

Commit

Permalink
Merge pull request #63 from NyangGleNyangGle/develop
Browse files Browse the repository at this point in the history
[Ui] 전체 높이 제한 추가
  • Loading branch information
dusunax authored Dec 18, 2022
2 parents 7346694 + 64e33d7 commit 0aec8a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const StLayout = styled.main`
& > .contents_area {
width: 100%;
max-width: 550px;
height: calc(100% - 15vh);
height: calc(100% - 20vh);
margin-bottom: 5vh;
Expand All @@ -81,13 +81,15 @@ const StLayout = styled.main`
@media (min-width: 1000px) {
& > .contents_area {
max-width: 390px;
max-height: 800px;
}
.site_title {
position: fixed;
left: 50%;
top: 10px;
/* z-index: -9; */
transform: translateX(calc(-100% - 220px));
margin-top: 80px;
.logo {
height: 50px;
Expand Down

0 comments on commit 0aec8a6

Please sign in to comment.