We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96a6eb4 commit 0092a28Copy full SHA for 0092a28
src/app/configuration/configuration.component.html
@@ -56,7 +56,7 @@
56
</mat-option>
57
</mat-autocomplete>
58
</mat-form-field>
59
- <div class="full-width" *ngIf="showAdvancedOptions">
+ <div class="full-width advanced-options-container" *ngIf="showAdvancedOptions">
60
<span i18n>Advanced Options:</span>
61
<ng-container *ngIf="showAdvancedOptions">
62
<mat-form-field>
src/app/configuration/configuration.component.ts
@@ -34,6 +34,14 @@ const removeProtocol = (str: string) => {
34
.advanced {
35
grid-column-start: 2;
36
}
37
+ .advanced-options-container {
38
+ display: flex;
39
+ flex-direction: column;
40
+ }
41
+
42
+ .advanced-options-container > * {
43
+ margin-bottom: 10px;
44
45
` ]
46
})
47
export class ConfigurationComponent implements OnInit {
0 commit comments