16 lines
188 B
SCSS
16 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;
|
||
|
}
|
||
|
}
|
||
|
}
|