21 lines
352 B
SCSS
21 lines
352 B
SCSS
.menu-main {
|
|
background-color: $color-5;
|
|
|
|
ul.list {
|
|
display: flex;
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
justify-content: center;
|
|
li {
|
|
a {
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
color: $color-white;
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
}
|
|
}
|
|
}
|