21 lines
298 B
CSS
21 lines
298 B
CSS
.root {
|
|
margin: 1rem;
|
|
padding: 1rem;
|
|
background-color: var(--color-bg1);
|
|
border-radius: var(--border-radius);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.brand {
|
|
font-size: 2rem;
|
|
font-weight: 300;
|
|
}
|
|
|
|
.nav {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2.5rem;
|
|
}
|