mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-07 21:10:55 +08:00
* Initial commit * Updated stories / Fixed issues with dark theme constrast color * Force colors so bootstrap doesn't override * Fixed text colors / Added initial tests * Added jest debugging ability to components package * Removed spec file * Fixed anchor layout * revert base font-size * [CL-28] fixed indentation, used focus-visible, adjusted disabled colors * [CL-28] Reduced ring thickness to better match figma * [CL-28] Updated story link * [CL-44] [CL-28] Updated tabs disabled color / Converted to rgb format with helper
12 lines
272 B
TypeScript
12 lines
272 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
|
|
import { LinkDirective } from "./link.directive";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule],
|
|
exports: [LinkDirective],
|
|
declarations: [LinkDirective],
|
|
})
|
|
export class LinkModule {}
|