Commit fe2205ea authored by Marcelo Rivera's avatar Marcelo Rivera

(fix): media queries for navbar

1 merge request!528WIP: (feat): Minds Pro
Pipeline #79442502 failed with stages
in 7 minutes
......@@ -14,7 +14,7 @@ m-pro--channel {
background-color: var(--m-pro--transparent-background-color) !important;
m-pro__hamburger-menu {
@media screen and (min-width: ($max-mobile + 1px)) {
@media screen and (min-width: ($min-tablet + 1px)) {
display: none;
}
}
......@@ -218,7 +218,7 @@ m-pro--channel {
width: 80%;
margin: 0 auto;
@media screen and (max-width: $max-mobile) {
@media screen and (max-width: $min-tablet) {
display: none;
}
}
......
......@@ -264,7 +264,7 @@ export class ProChannelComponent implements OnInit, AfterViewInit, OnDestroy {
}
@HostListener('window:resize') onResize() {
this.collapseNavItems = window.innerWidth <= 992;
this.collapseNavItems = window.innerWidth <= 768;
}
search(): Promise<boolean> {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment