15 lines
188 B
SCSS
15 lines
188 B
SCSS
nav {
|
|
margin-top: 20px;
|
|
ul {
|
|
padding: 0px;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
gap: 2.5em;
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
}
|
|
}
|