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 8686e1e commit 223c77cCopy full SHA for 223c77c
src/app/modules/shared/components/sidebar/sidebar.component.html
@@ -29,8 +29,8 @@
29
</ul>
30
</div>
31
</nav>
32
- <div class="container-fluid">
33
- <div class="content_app">
+ <div class="container-fluid px-0 full-height">
+ <div class="content_app h-100">
34
<router-outlet></router-outlet>
35
36
src/app/modules/shared/components/sidebar/sidebar.component.scss
@@ -44,7 +44,7 @@ body {
44
}
45
46
.content_app {
47
- padding: 5rem 3rem;
+ padding: 2rem 3rem 5rem 3rem;
48
overflow-y: auto;
49
50
@@ -54,3 +54,11 @@ body {
54
text-decoration: underline;
55
border-color: $primary;
56
57
+
58
+.full-height {
59
+ height: 100%;
60
+ height: -moz-calc(100vh - 12vh);
61
+ height: -webkit-calc(100vh - 12vh);
62
+ height: -o-calc(100vh - 12vh);
63
+ height: calc(100vh - 12vh);
64
+}
0 commit comments