Skip to content

Commit

Permalink
bg(mobile-nav): fix jumping mobile nav for firefox (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilome committed Feb 7, 2019
1 parent 341b306 commit 5dfe8a3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/index.css
Expand Up @@ -17,6 +17,7 @@ header {
font-family: 'Comfortaa', cursive;
justify-content: space-between;
padding: 5px 20px;
position: relative;
text-transform: lowercase;
width: calc(100% - 40px);
}
Expand Down Expand Up @@ -478,7 +479,14 @@ footer {
}

header {
align-items: baseline;
align-items: flex-start;
min-height: 150px;
}

nav {
position: absolute;
top: 30px;
right: 25px;
}

nav ul {
Expand Down

0 comments on commit 5dfe8a3

Please sign in to comment.