Skip to content

Commit

Permalink
Merge pull request #210 from fac-17/bug/double-scroll-bar
Browse files Browse the repository at this point in the history
Fix issue with double scroll
  • Loading branch information
samjam48 authored Sep 19, 2019
2 parents 8beaa00 + 5b97c0a commit f763d3e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
--purple: #1e1732;
}



body {
font-family: "Dosis", sans-serif;
position: relative;
Expand Down Expand Up @@ -61,7 +63,7 @@ body > section.nav-bar > div.nav-bar-content > svg:nth-child(2) {
transform: translateX(100%);
transition: all 0.5s ease;
width: 200px;
overflow-x: hidden
overflow-x: hidden;
}

#burger-menu.visible {
Expand Down Expand Up @@ -113,7 +115,7 @@ body > section.nav-bar > div.nav-bar-content > svg:nth-child(2) {

.footer-container {
display: flex;
padding: 0em 2em;
padding: 0;
color: white;
background-color: #184353;
height: 3em;
Expand All @@ -122,11 +124,11 @@ body > section.nav-bar > div.nav-bar-content > svg:nth-child(2) {
justify-content: space-between;
width: 100vw;
position: absolute;

}

.footer {
bottom: 0;
bottom: 3em;
position: absolute;
}

Expand Down

0 comments on commit f763d3e

Please sign in to comment.