Skip to content

Commit

Permalink
fix: Fix minimum height on 404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
ripixel committed Jun 6, 2020
1 parent b56e12b commit 79f34d4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion assets/styles.css
Expand Up @@ -93,6 +93,11 @@ nav h2 {
font-size: 2.5em;
}

/* This translate into nav.404 h2 - https://medium.com/front-end-weekly/css-selector-for-element-which-have-numbers-as-class-name-b6a089989199*/
nav.\34 04 h2 {
display: none;
}

nav.coding {
background: rgb(105, 0, 97);
}
Expand Down Expand Up @@ -154,7 +159,7 @@ main a:hover {
}

main.error {
min-height: 30vh;
min-height: 90vh;
}

main.hello {
Expand Down

0 comments on commit 79f34d4

Please sign in to comment.