diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index d64b85e..2387f2c 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -2,11 +2,13 @@ import { NgModule } from '@angular/core'; import { Routes, RouterModule } from '@angular/router'; import { ComprobantesComponent } from './comprobantes/comprobantes.component'; import { AppBotonera } from './botonera/botonera.component'; +import { LoginComponent } from './login/login.component'; const routes: Routes = [ { path: 'comprobantes', component: ComprobantesComponent, pathMatch: 'full' }, { path: '', redirectTo: 'home', pathMatch: 'full' }, - { path: 'home', component: AppBotonera } + { path: 'home', component: AppBotonera }, + { path: 'login', component: LoginComponent } ]; @NgModule({ diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 83f7231..15157f9 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -11,6 +11,8 @@ import { AppBotonera } from './botonera/botonera.component'; import { ComprobantesComponent } from './comprobantes/comprobantes.component'; import { NombreEmpresaComponent } from './nombre-empresa/nombre-empresa.component'; import { AccionesComponent } from './acciones/acciones.component'; +import { LoginComponent } from './login/login.component'; +import { BusquedaComprobanteComponent } from './busqueda-comprobante/busqueda-comprobante.component'; @NgModule({ declarations: [ @@ -18,7 +20,9 @@ import { AccionesComponent } from './acciones/acciones.component'; AppBotonera, ComprobantesComponent, NombreEmpresaComponent, - AccionesComponent + AccionesComponent, + LoginComponent, + BusquedaComprobanteComponent ], imports: [ BrowserModule, diff --git a/src/app/botonera/botonera.component.css b/src/app/botonera/botonera.component.css index d10409c..5cc4c9f 100644 --- a/src/app/botonera/botonera.component.css +++ b/src/app/botonera/botonera.component.css @@ -44,11 +44,6 @@ opacity: .8; } } -.acciones-mobile { - line-height: 2.5em; - color: orange; - font-size: 1.25em -} .swiper { height: 300px; }