style(navigation): small stylings

This commit is contained in:
2025-08-22 00:50:32 +02:00
parent 244ad1aabe
commit 8f1cf01f67
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@
</ul> </ul>
</p-card> </p-card>
</div> </div>
<div class="options flex flex-row gap-[10px]"> <div class="options flex flex-row gap-[10px] items-center">
@if (themeSwitchService.darkMode()) { @if (themeSwitchService.darkMode()) {
<div class="dark-mode size-[50px]" (click)="themeSwitchService.switchToLight()"> <div class="dark-mode size-[50px]" (click)="themeSwitchService.switchToLight()">
<fa-icon [icon]="faMoon"/> <fa-icon [icon]="faMoon"/>

View File

@@ -8,11 +8,11 @@ nav {
transition: border .5s ease; transition: border .5s ease;
&:hover { &:hover {
border-color: var(--surface-100); border-color: var(--content-hover-background);
} }
&:active { &:active {
border-color: var(--surface-500); border-color: var(--content-border-color);
} }
} }