From 81540830947900ee72498afc66315ee3084b3d1c Mon Sep 17 00:00:00 2001 From: s473561 Date: Wed, 14 Jun 2023 21:36:08 +0200 Subject: [PATCH] small updates --- src/app/app.module.ts | 1 - src/app/numerology/numerology.component.html | 2 +- src/app/numerology/numerology.component.ts | 1 - src/app/open-numerology/open-numerology.service.ts | 2 +- src/styles.css | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index cc864fb..11db1f2 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -11,7 +11,6 @@ import { HoroscopeDataContainerComponent } from './horoscope-data-container/horo import { NavBarComponent } from './nav-bar/nav-bar.component'; import { NumerologyComponent } from './numerology/numerology.component'; - @NgModule({ declarations: [ AppComponent, diff --git a/src/app/numerology/numerology.component.html b/src/app/numerology/numerology.component.html index 98edc48..fbe53ee 100644 --- a/src/app/numerology/numerology.component.html +++ b/src/app/numerology/numerology.component.html @@ -1,7 +1,7 @@
diff --git a/src/app/numerology/numerology.component.ts b/src/app/numerology/numerology.component.ts index 0707642..9d2c28d 100644 --- a/src/app/numerology/numerology.component.ts +++ b/src/app/numerology/numerology.component.ts @@ -1,7 +1,6 @@ import { Component, OnInit } from '@angular/core'; import { OpenNumerologyService } from '../open-numerology/open-numerology.service'; import { NumerologyData } from '../models/numerology.model'; -import { FormsModule, ReactiveFormsModule } from '@angular/forms'; @Component({ selector: 'app-numerology', diff --git a/src/app/open-numerology/open-numerology.service.ts b/src/app/open-numerology/open-numerology.service.ts index 1836c9f..ab957a7 100644 --- a/src/app/open-numerology/open-numerology.service.ts +++ b/src/app/open-numerology/open-numerology.service.ts @@ -1,4 +1,4 @@ -import { HttpClient, HttpErrorResponse, HttpHeaders, HttpParams, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http'; +import { HttpClient, HttpErrorResponse, HttpHeaders, HttpParams } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { NumerologyData } from '../models/numerology.model'; import { Observable } from 'rxjs/internal/Observable'; diff --git a/src/styles.css b/src/styles.css index a0281ce..700463c 100644 --- a/src/styles.css +++ b/src/styles.css @@ -1,7 +1,6 @@ @import '../node_modules/alertifyjs/build/css/alertify.min.css'; @import '../node_modules/alertifyjs/build/css/themes/bootstrap.min.css'; - :root{ --green-1: #728c5d; --green-2: #364d23; @@ -30,6 +29,7 @@ body { } .first-column { width: 35%; + height: 78vh; display: flex; flex-direction: column; }