21 lines
309 B
Text
21 lines
309 B
Text
nav ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
li {
|
|
text-align: center;
|
|
flex: 1 0 0;
|
|
line-height: 40px;
|
|
cursor: pointer;
|
|
|
|
border-top: 4px solid transparent;
|
|
border-bottom: 4px solid transparent;
|
|
|
|
&.active {
|
|
border-top-color: dodgerblue;
|
|
}
|
|
}
|
|
}
|