mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
* [CL-17] Tabs - Routing * Updated titles * Revision changes * Replaced testing module to achieve active default state * Z-index for tab vs disabled * Revision changes * Updated z index on focus * Fixed background color of selected tab * Force text colors in-case bootstrap tries to override * Remove unecessary css rules, fix tabs moving when active Co-authored-by: Hinton <hinton@users.noreply.github.com>
14 lines
444 B
TypeScript
14 lines
444 B
TypeScript
import { CommonModule } from "@angular/common";
|
|
import { NgModule } from "@angular/core";
|
|
import { RouterModule } from "@angular/router";
|
|
|
|
import { TabGroupComponent } from "./tab-group.component";
|
|
import { TabItemComponent } from "./tab-item.component";
|
|
|
|
@NgModule({
|
|
imports: [CommonModule, RouterModule],
|
|
exports: [TabGroupComponent, TabItemComponent],
|
|
declarations: [TabGroupComponent, TabItemComponent],
|
|
})
|
|
export class TabsModule {}
|