26 lines
336 B
CSS
26 lines
336 B
CSS
.list {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: 0.4rem;
|
|
justify-content: flex-start;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.listItem,
|
|
.link {
|
|
color: var(--some-text-color, #000);
|
|
font-size: 1.4rem;
|
|
font-weight: 400;
|
|
line-height: 1.56rem;
|
|
}
|
|
|
|
.link {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.currentPage {
|
|
margin: 0;
|
|
}
|