mirror of
https://github.com/bitwarden/browser
synced 2026-02-28 02:23:25 +00:00
13 lines
280 B
TypeScript
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 {}
|