Files
wgenerator/src/app/widget-modules/components/application-frame/navigation/navigation.component.less
benjamin b330fb8141
Some checks failed
Angular Build / build (push) Has been cancelled
fix dark mode css
2026-04-27 23:53:51 +02:00

60 lines
1013 B
Plaintext

@import "../../../../../styles/styles";
@import "../../../../../styles/shadow";
nav {
&.head {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 50px;
background: var(--navigation-background);
color: var(--text-inverse);
z-index: 20;
box-shadow: 0px -5px 20px 4px rgba(0, 0, 0, 0.39), 1px 0px 6px 4px rgba(0, 0, 0, 0.53);
backdrop-filter: blur(10px);
transition: var(--transition);
display: flex;
align-items: flex-end;
justify-content: space-between;
&.hidden {
@media screen and (max-width: 860px) {
// top: -60px;
}
}
}
}
.actions {
display: flex;
height: 100%;
align-items: center;
padding-right: 12px;
}
.actions-search {
gap: var(--gap-s);
padding-right: 20px;
}
.theme-toggle {
color: var(--text-inverse);
transition: var(--transition-fast);
&:hover {
background: var(--hover-background);
}
}
.theme-toggle fa-icon {
font-size: 14px;
}
.links {
display: flex;
height: 50px;
}