16 lines
163 B
CSS
16 lines
163 B
CSS
ul.navbar {
|
|
flex: auto;
|
|
background-color: black;
|
|
color: white;
|
|
}
|
|
|
|
.navbar li {
|
|
list-style: none;
|
|
}
|
|
|
|
.navbar li.title {
|
|
width: fit-content;
|
|
}
|
|
|
|
|