Skip to content
Snippets Groups Projects
Commit d5812b02 authored by Isaac Evavold's avatar Isaac Evavold
Browse files

ROENROLL-1461 removes term container scrolling on mobile

parent a95eb4be
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
</div> </div>
</ng-template> </ng-template>
<mat-card class="term-container"> <mat-card class="term-container" [ngClass]="{ 'no-scrolling': mobileView.matches }">
<div class="term-inner"> <div class="term-inner">
<div <div
fxLayout="row" fxLayout="row"
......
...@@ -7,6 +7,10 @@ ...@@ -7,6 +7,10 @@
background-color: #eef1f3; background-color: #eef1f3;
padding: 0; padding: 0;
transition: all 0.2s ease-out; transition: all 0.2s ease-out;
&.no-scrolling {
height: auto;
}
} }
/deep/.mat-tab-label, /deep/.mat-tab-label,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment