Commit 87991deaf7ef32736bf47455863e78c9e3429507

Authored by Igor Kulikov
Committed by GitHub
2 parents 8519f0a9 521f14e7

Merge pull request #3806 from vvlladd28/bug/response/admin-setting/md

UI: Fixed show OAuth2 settings in table screen
... ... @@ -61,8 +61,8 @@
61 61 <div [formGroupName]="n" fxLayout="row" fxLayoutGap="8px">
62 62 <div fxFlex fxLayout="row" fxLayout.xs="column" fxLayoutGap="8px">
63 63 <div fxLayout="column" fxFlex.sm="60" fxFlex.gt-sm="50">
64   - <div fxLayout="row" fxLayout.xs="column" fxLayoutGap="8px">
65   - <mat-form-field fxFlex="30" fxFlex.xs class="mat-block">
  64 + <div fxLayout="row" fxLayout.xs="column" fxLayout.md="column" fxLayoutGap="8px" fxLayoutGap.md="0px">
  65 + <mat-form-field fxFlex="30" fxFlex.md fxFlex.xs class="mat-block">
66 66 <mat-label translate>admin.oauth2.protocol</mat-label>
67 67 <mat-select formControlName="scheme">
68 68 <mat-option *ngFor="let protocol of protocols" [value]="protocol">
... ...
... ... @@ -18,7 +18,12 @@
18 18 :host {
19 19 mat-card.settings-card {
20 20 margin: 8px;
21   - @media #{$mat-gt-sm} {
  21 +
  22 + @media #{$mat-md} {
  23 + width: 80%;
  24 + }
  25 +
  26 + @media #{$mat-gt-md} {
22 27 width: 60%;
23 28 }
24 29 }
... ...