umami/components/layout/NavBar.module.css
2023-03-21 21:28:36 -07:00

50 lines
752 B
CSS

.navbar {
position: relative;
display: flex;
flex-direction: row;
align-items: center;
height: 60px;
background: var(--base75);
border-bottom: 1px solid var(--base200);
padding: 0 20px;
}
.logo {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-size: 16px;
font-weight: 700;
cursor: pointer;
min-width: 0;
}
.links {
display: flex;
flex-direction: row;
gap: 20px;
padding: 0 40px;
flex: 1;
font-weight: 700;
}
.links a {
display: flex;
align-items: center;
gap: 10px;
color: var(--font-color100);
}
.links a:hover {
color: var(--primary400);
}
.actions {
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-end;
min-width: 0;
}