mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
* [CL-59] feat: add explicit relative line-height to button * [EC-59] feat: fix using pseudo element workaround * [EC-59] fix: inconsistent templates * [CL-59] feat: add inline example * [CL-59] fix: tweak horizontal padding
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { AnchorLinkDirective, ButtonLinkDirective } from "./link.directive";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule],
|
|
exports: [AnchorLinkDirective, ButtonLinkDirective],
|
|
declarations: [AnchorLinkDirective, ButtonLinkDirective],
|
|
})
|
|
export class LinkModule {}
|