17 lines
233 B
SCSS
17 lines
233 B
SCSS
.navbar {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin: 1rem;
|
|
|
|
&__logo {
|
|
font-weight: bold;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
&__user {
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
}
|