Commit 521f14e725d6cd242dac87551f95f83e617594d4

Authored by Vladyslav_Prykhodko
1 parent 8519f0a9

UI: Fixed show OAuth2 settings in table screen

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