UNPKG

316 BJavaScriptView Raw
1export default function createMixins(breakpoints, mixins) {
2 return {
3 toolbar: {
4 minHeight: 56,
5 [breakpoints.up('xs')]: {
6 '@media (orientation: landscape)': {
7 minHeight: 48
8 }
9 },
10 [breakpoints.up('sm')]: {
11 minHeight: 64
12 }
13 },
14 ...mixins
15 };
16}
\No newline at end of file