min width for server inputs fix

This commit is contained in:
mpetrov 2024-07-05 17:53:34 +03:00
parent d6043f4d74
commit 6773eb0b8d
2 changed files with 91 additions and 83 deletions

View File

@ -16,6 +16,7 @@
-->
<div class="tb-form-panel no-border no-padding padding-top" [formGroup]="serverConfigFormGroup">
<div class="server-settings">
<div class="tb-form-row column-xs" fxLayoutAlign="space-between center">
<div class="fixed-title-width" translate>gateway.server-url</div>
<div class="tb-flex no-gap">
@ -105,6 +106,7 @@
</mat-form-field>
</div>
</div>
</div>
<div class="tb-form-row" fxLayoutAlign="space-between center">
<mat-slide-toggle class="mat-slide" formControlName="enableSubscriptions">
<mat-label tb-hint-tooltip-icon="{{ 'gateway.hints.enable-subscription' | translate }}">

View File

@ -17,4 +17,10 @@
width: 100%;
height: 100%;
display: block;
.server-settings {
::ng-deep .fixed-title-width {
min-width: 254px !important;
}
}
}