1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-28 02:23:25 +00:00
Files
browser/libs/components/src/tabs/shared/tab-list-container.directive.ts
Oscar Hinton 26fb7effd3 Remove standalone true from platform and UIF (#15032)
Remove standalone: true from every instance since it's the default as of Angular 19.
2025-06-02 20:03:04 +02:00

13 lines
280 B
TypeScript

import { Directive } from "@angular/core";
/**
* Directive used for styling the container for bit tab labels
*/
@Directive({
selector: "[bitTabListContainer]",
host: {
class: "tw-inline-flex tw-flex-wrap tw-leading-5",
},
})
export class TabListContainerDirective {}