1 | ;
|
2 |
|
3 | Object.defineProperty(exports, "__esModule", {
|
4 | value: true
|
5 | });
|
6 | exports.default = createMixins;
|
7 | function 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 |