Use material design for side panel drawer

Change-Id: I7c89f3022accd6cda524fded63fe84e42e2fab62
This commit is contained in:
Manuel Stahl
2019-03-12 14:29:48 +01:00
parent 0dc4375f60
commit 032b2e0015
8 changed files with 172 additions and 118 deletions
+40
View File
@@ -0,0 +1,40 @@
// Small tablets and large smartphones (landscape view)
$screen-sm-min: 576px;
// Small tablets (portrait view)
$screen-md-min: 768px;
// Tablets and small desktops
$screen-lg-min: 992px;
// Large tablets and desktops
$screen-xl-min: 1200px;
// Small devices
@mixin sm {
@media (min-width: #{$screen-sm-min}) {
@content;
}
}
// Medium devices
@mixin md {
@media (min-width: #{$screen-md-min}) {
@content;
}
}
// Large devices
@mixin lg {
@media (min-width: #{$screen-lg-min}) {
@content;
}
}
// Extra large devices
@mixin xl {
@media (min-width: #{$screen-xl-min}) {
@content;
}
}