mirror of
https://github.com/google/nomulus.git
synced 2025-07-24 19:48:32 +02:00
Fix minor alignment issue on console WHOIS page (#2166)
This commit is contained in:
parent
bd0d8af7b3
commit
2a7e9a266a
2 changed files with 4 additions and 4 deletions
|
@ -12,7 +12,7 @@
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
import { Component, ViewChild } from '@angular/core';
|
import { AfterViewInit, Component, ViewChild } from '@angular/core';
|
||||||
import { RegistrarService } from './registrar/registrar.service';
|
import { RegistrarService } from './registrar/registrar.service';
|
||||||
import { UserDataService } from './shared/services/userData.service';
|
import { UserDataService } from './shared/services/userData.service';
|
||||||
import { GlobalLoaderService } from './shared/services/globalLoader.service';
|
import { GlobalLoaderService } from './shared/services/globalLoader.service';
|
||||||
|
@ -24,7 +24,7 @@ import { MatSidenav } from '@angular/material/sidenav';
|
||||||
templateUrl: './app.component.html',
|
templateUrl: './app.component.html',
|
||||||
styleUrls: ['./app.component.scss'],
|
styleUrls: ['./app.component.scss'],
|
||||||
})
|
})
|
||||||
export class AppComponent {
|
export class AppComponent implements AfterViewInit {
|
||||||
renderRouter: boolean = true;
|
renderRouter: boolean = true;
|
||||||
|
|
||||||
@ViewChild('sidenav')
|
@ViewChild('sidenav')
|
||||||
|
|
|
@ -24,14 +24,14 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
min-width: 450px;
|
min-width: 400px;
|
||||||
width: 50%;
|
width: 50%;
|
||||||
max-width: 50%;
|
max-width: 50%;
|
||||||
}
|
}
|
||||||
&__section-description {
|
&__section-description {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-block-start: 1em;
|
margin-block-start: 1em;
|
||||||
min-width: 150px;
|
width: 160px;
|
||||||
}
|
}
|
||||||
&__section-form {
|
&__section-form {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue