mirror of
https://github.com/bitwarden/browser
synced 2026-02-02 01:33:22 +00:00
Enables the non tailwind eslint rule to ensure we don't accidentally add any bad classes to our browser extension. - Notification bar uses a custom CSS file and is excluded. - Removed unused `UserVerificationComponent`.
10 lines
258 B
HTML
10 lines
258 B
HTML
<div
|
|
class="bit-tooltip-container"
|
|
[attr.data-position]="tooltipData.tooltipPosition()"
|
|
[attr.data-visible]="tooltipData.isVisible()"
|
|
>
|
|
<div role="tooltip" class="bit-tooltip">
|
|
<ng-content>{{ tooltipData.content() }}</ng-content>
|
|
</div>
|
|
</div>
|