Skip to content

Commit

Permalink
Merge pull request #236 from Murdock9803/resposive-resource
Browse files Browse the repository at this point in the history
Made resource-navbar section responsive
  • Loading branch information
possumbilities authored Mar 22, 2024
2 parents 51530ac + 57f1f3d commit e7db504
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions docs/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -237,15 +237,15 @@ color: white;
}

#resourcenavbar {
width: 600px;
height: 150px;
height: fit-content;
margin: 0 auto 100px;
display: flex;
justify-content: center;
}

.resourcenav {
width: 200px;
height: 150px;
float: left;
height: fit-content;
display: none;
}

Expand All @@ -267,3 +267,9 @@ footer a {
footer .donate a {
color: #000;
}

@media screen and (max-width: 600px) {
#resourcenavbar {
flex-direction: column;
}
}

0 comments on commit e7db504

Please sign in to comment.