Skip to content

Commit 19cd5e4

Browse files
committed
Fix themesberg#55 cutted dropdown for mobile
1 parent 1cfdb80 commit 19cd5e4

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/scss/volt/layout/_sidenav.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,11 +167,23 @@
167167
}
168168
}
169169

170+
body {
171+
@include media-breakpoint-down(lg) {
172+
display: flex;
173+
flex-direction: column;
174+
min-height: 100vh;
175+
}
176+
}
177+
170178
.content {
171179
overflow: hidden;
172180
padding: 0 $spacer 0 $spacer;
173181
@include transition(all .3s);
174182

183+
@include media-breakpoint-down(lg) {
184+
flex-grow: 1;
185+
}
186+
175187
@include media-breakpoint-up(lg) {
176188
margin-left: 260px;
177189
min-height: 100vh;

0 commit comments

Comments
 (0)