Skip to content

Commit

Permalink
Merge pull request #965 from codeRIT/develop
Browse files Browse the repository at this point in the history
Move tablet layout changes to master
  • Loading branch information
ww2497 authored Oct 26, 2020
2 parents 1d48b86 + a35641c commit 0932231
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,15 @@ html, body, #root, #app, .full-height {
height: 100%;
display: flex;
flex-direction: column;

@include desktop {
min-height: 775px;
min-height: 750px;
}
@include tablet {
height: calc(100% - 74.5px);
}
@include mobile {
height: 0%;
}
}

Expand All @@ -185,7 +192,7 @@ html, body, #root, #app, .full-height {
@include tablet {
max-width: 100%;
flex-direction: column;
margin: 0px;
margin: auto;
}
}

Expand All @@ -195,6 +202,10 @@ html, body, #root, #app, .full-height {
.left-half {
@extend .right-half;
margin-bottom: 2.5vh;

@include tablet {
margin-bottom: 15vh;
}
}

.hero-img {
Expand Down

0 comments on commit 0932231

Please sign in to comment.