25 lines
343 B
Text
25 lines
343 B
Text
nav ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
.icon {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|