Rename Header to NavBar and add it to the bottom too
This commit is contained in:
35
styles/NavBar.module.scss
Normal file
35
styles/NavBar.module.scss
Normal file
@@ -0,0 +1,35 @@
|
||||
.navBarContainer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
.navBar {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.navBarLink {
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
color: #2f273e;
|
||||
text-decoration: none;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 600px) {
|
||||
.navBarLink {
|
||||
width: 100%;
|
||||
padding: 0px;
|
||||
text-align: center;
|
||||
text-decoration: underline;
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 4px;
|
||||
margin-left: 1rem;
|
||||
margin-right: 1rem;
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user