mirror of
https://github.com/bitwarden/browser
synced 2026-02-04 10:43:47 +00:00
13 lines
429 B
HTML
13 lines
429 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-100 tw-bg-background tw-shadow-md 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>
|