mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-23 23:38:19 +00:00

* fix(console): horizontal toggle for users, projects * improve input contrast * toggles, profile UI fix * lint * fix safari styles * fix button placement redirects * style lint Co-authored-by: Livio Spring <livio.a@gmail.com>
13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { NavToggleComponent } from './nav-toggle.component';
|
|
|
|
@NgModule({
|
|
declarations: [NavToggleComponent],
|
|
imports: [CommonModule, RouterModule],
|
|
exports: [NavToggleComponent],
|
|
})
|
|
export class NavToggleModule {}
|