mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 17:53:39 +00:00
13 lines
416 B
HTML
13 lines
416 B
HTML
<ng-template>
|
|
<div
|
|
(click)="closed.emit()"
|
|
class="tw-flex tw-shrink-0 tw-flex-col tw-rounded-lg tw-border tw-border-solid tw-border-secondary-500 tw-bg-background tw-bg-clip-padding tw-py-1 tw-overflow-y-auto"
|
|
[attr.role]="ariaRole()"
|
|
[attr.aria-label]="ariaLabel()"
|
|
cdkTrapFocus
|
|
[cdkTrapFocusAutoCapture]="ariaRole() === 'dialog'"
|
|
>
|
|
<ng-content></ng-content>
|
|
</div>
|
|
</ng-template>
|