Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: make autocomplete take full height #544
  • Loading branch information
Angeluz-07 committed Oct 19, 2020
commit 223c77c08337981f41ece39a4960b6d0a852c987
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="content_app">
<div class="container-fluid px-0 full-height">
<div class="content_app h-100">
<router-outlet></router-outlet>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ body {
}

.content_app {
padding: 5rem 3rem;
padding: 2rem 3rem 5rem 3rem;
overflow-y: auto;
}

Expand All @@ -54,3 +54,11 @@ body {
text-decoration: underline;
border-color: $primary;
}

.full-height {
height: 100%;
height: -moz-calc(100vh - 12vh);
height: -webkit-calc(100vh - 12vh);
height: -o-calc(100vh - 12vh);
height: calc(100vh - 12vh);
}