Skip to content

Commit 9059e0d

Browse files
committed
Fixed burger menu
1 parent 8f1fdb1 commit 9059e0d

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

app/sidebar/sidebar-routes.config.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/sidebar/sidebar-routes.config.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/sidebar/sidebar-routes.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ export const ROUTES: RouteInfo[] = [
88
{ path: 'icons', title: 'Icons', icon:'bubble_chart', class: '' },
99
{ path: 'maps', title: 'Maps', icon:'location_on', class: '' },
1010
{ path: 'notifications', title: 'Notifications', icon:'notifications', class: '' },
11-
// { path: 'upgrade', title: 'Upgrade to PRO', icon:'unarchive', class: 'active-pro' },
11+
{ path: 'upgrade', title: 'Upgrade to PRO', icon:'unarchive', class: 'active-pro' },
1212
];

assets/css/material-dashboard.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3491,6 +3491,11 @@ fieldset[disabled] .form-group.is-focused .togglebutton label {
34913491
z-index: 1029;
34923492
}
34933493

3494+
@media (max-width: 1199px) {
3495+
.nav-container {
3496+
position: relative;
3497+
}
3498+
}
34943499
.popover, .tooltip-inner {
34953500
color: #555555;
34963501
line-height: 1.5em;

assets/sass/md/_navbars.scss

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,8 @@
327327
padding-top: 10px;
328328
z-index: 1029;
329329
}
330-
331-
// .nav-container{
332-
// position: relative;
333-
// }
330+
@media (max-width: $screen-md-max) {
331+
.nav-container{
332+
position: relative;
333+
}
334+
}

0 commit comments

Comments
 (0)