Skip to content

Commit cc6d8ca

Browse files
authored
Merge pull request topcoderinc#434 from topcoderinc/issue-276
fixes issue 276
2 parents 8d6dc7c + 0a2cf10 commit cc6d8ca

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/app/components/import-data-dialog/import-data-dialog.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h1 mat-dialog-title>{{opType === 'import' ? 'Import':'Export'}} Data</h1>
1414
</div>
1515

1616

17-
<div class="row" *ngIf="opType === 'import'">
17+
<div class="row import-value" *ngIf="opType === 'import'">
1818
<div class="left-part">
1919
<div class="label">Value</div>
2020
<div class="commands">

src/app/components/import-data-dialog/import-data-dialog.component.scss

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
mat-form-field {
77
flex: 1;
88
}
9+
&.import-value {
10+
margin-top: -13px;
11+
}
912
.left-part {
1013
font-size: 14px;
1114
width: 100px;
@@ -16,7 +19,7 @@
1619
display: flex;
1720

1821
.label {
19-
margin-top: 16px;
22+
margin-top: 22px;
2023
margin-bottom: 16px;
2124
}
2225
.commands {

0 commit comments

Comments
 (0)