From 2a7e9a266a212939fd4cd01efbd93c78f4fb62c2 Mon Sep 17 00:00:00 2001 From: gbrodman Date: Wed, 11 Oct 2023 09:25:05 -0400 Subject: [PATCH] Fix minor alignment issue on console WHOIS page (#2166) --- console-webapp/src/app/app.component.ts | 4 ++-- console-webapp/src/app/settings/whois/whois.component.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/console-webapp/src/app/app.component.ts b/console-webapp/src/app/app.component.ts index 6190a8f47..cc36d164c 100644 --- a/console-webapp/src/app/app.component.ts +++ b/console-webapp/src/app/app.component.ts @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -import { Component, ViewChild } from '@angular/core'; +import { AfterViewInit, Component, ViewChild } from '@angular/core'; import { RegistrarService } from './registrar/registrar.service'; import { UserDataService } from './shared/services/userData.service'; import { GlobalLoaderService } from './shared/services/globalLoader.service'; @@ -24,7 +24,7 @@ import { MatSidenav } from '@angular/material/sidenav'; templateUrl: './app.component.html', styleUrls: ['./app.component.scss'], }) -export class AppComponent { +export class AppComponent implements AfterViewInit { renderRouter: boolean = true; @ViewChild('sidenav') diff --git a/console-webapp/src/app/settings/whois/whois.component.scss b/console-webapp/src/app/settings/whois/whois.component.scss index 544bc69ae..6d08212c8 100644 --- a/console-webapp/src/app/settings/whois/whois.component.scss +++ b/console-webapp/src/app/settings/whois/whois.component.scss @@ -24,14 +24,14 @@ display: flex; flex-wrap: wrap; margin-bottom: 5px; - min-width: 450px; + min-width: 400px; width: 50%; max-width: 50%; } &__section-description { display: inline-block; margin-block-start: 1em; - min-width: 150px; + width: 160px; } &__section-form { display: inline-block;