9 lines
143 B
CSS
9 lines
143 B
CSS
.menu {
|
|
list-style: none;
|
|
margin: 0;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
gap: var(--Spacing-x4);
|
|
}
|