Remove fixed height on .top-navbar (#68)

* Remove fixed height on .top-navbar

* Fix responsiveness

Co-authored-by: Emruz Hossain <emruz@appscode.com>
This commit is contained in:
Jean Macena 2020-08-25 12:28:39 -03:00 committed by GitHub
parent 9abf5b5796
commit 738f7d5a1b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 55 additions and 194 deletions

View file

@ -132,6 +132,14 @@
/* IPad Pro */
@media (max-width: 1024px) {
.top-navbar {
height: -webkit-fit-content;
height: -moz-fit-content;
height: fit-content;
padding-bottom: 0px;
padding-top: 0px;
}
.top-navbar .container {
max-width: 100%;
}