Skip to content

Commit 0092a28

Browse files
committed
formatted the spacing on the configuration page (fixes #8975)
1 parent 96a6eb4 commit 0092a28

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/app/configuration/configuration.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</mat-option>
5757
</mat-autocomplete>
5858
</mat-form-field>
59-
<div class="full-width" *ngIf="showAdvancedOptions">
59+
<div class="full-width advanced-options-container" *ngIf="showAdvancedOptions">
6060
<span i18n>Advanced Options:</span>
6161
<ng-container *ngIf="showAdvancedOptions">
6262
<mat-form-field>

src/app/configuration/configuration.component.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ const removeProtocol = (str: string) => {
3434
.advanced {
3535
grid-column-start: 2;
3636
}
37+
.advanced-options-container {
38+
display: flex;
39+
flex-direction: column;
40+
}
41+
42+
.advanced-options-container > * {
43+
margin-bottom: 10px;
44+
}
3745
` ]
3846
})
3947
export class ConfigurationComponent implements OnInit {

0 commit comments

Comments
 (0)