16 lines
259 B
CSS
16 lines
259 B
CSS
nav {
|
|
margin: 1rem;
|
|
height: 4rem;
|
|
display: flex;
|
|
background-color: var(--taupe200);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 1rem;
|
|
max-width: 960px;
|
|
width: 100vw;
|
|
}
|