style: Consistent backdrop and create server in server-rail

wider server rail with larger icons ans slightly animated.
This commit is contained in:
2026-06-05 02:34:02 +02:00
parent 2f6c52e73c
commit 9e1d75d038
34 changed files with 729 additions and 95 deletions

View File

@@ -0,0 +1,20 @@
@if (dismissable()) {
<div
class="fixed inset-0 bg-black/60"
[class.backdrop-blur-sm]="blur()"
[style.z-index]="zIndex()"
(click)="dismiss()"
(keydown.enter)="dismiss()"
(keydown.space)="dismiss()"
role="button"
tabindex="0"
[attr.aria-label]="ariaLabel()"
></div>
} @else {
<div
class="fixed inset-0 bg-black/60"
[class.backdrop-blur-sm]="blur()"
[style.z-index]="zIndex()"
role="presentation"
></div>
}