Fixes RDACommonStandards select panel width
This commit is contained in:
parent
f868eae309
commit
c0df37e996
|
@ -43,7 +43,7 @@
|
|||
|
||||
<mat-form-field class="col">
|
||||
<mat-label>{{'DATASET-PROFILE-EDITOR.STEPS.FORM.COMPOSITE-FIELD.FIELDS.RDA-COMMON-STANDARDS' | translate}}</mat-label>
|
||||
<mat-select [formControl]="this.form.get('rdaCommonStandard')">
|
||||
<mat-select class="rda-cs" [formControl]="this.form.get('rdaCommonStandard')">
|
||||
<mat-option>--</mat-option>
|
||||
<mat-option *ngFor="let property of datasetProfileService.getRDACommonStandards()" [value]="property">
|
||||
{{property}}
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
.full-width{
|
||||
.full-width {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.rda-cs {
|
||||
min-width: 17vw;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue