UNPKG

413 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = createMixins;
7function createMixins(breakpoints, mixins) {
8 return {
9 toolbar: {
10 minHeight: 56,
11 [breakpoints.up('xs')]: {
12 '@media (orientation: landscape)': {
13 minHeight: 48
14 }
15 },
16 [breakpoints.up('sm')]: {
17 minHeight: 64
18 }
19 },
20 ...mixins
21 };
22}
\No newline at end of file