You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
378 B
JavaScript
16 lines
378 B
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
export default function createMixins(breakpoints, mixins) {
|
|
return _extends({
|
|
toolbar: {
|
|
minHeight: 56,
|
|
[breakpoints.up('xs')]: {
|
|
'@media (orientation: landscape)': {
|
|
minHeight: 48
|
|
}
|
|
},
|
|
[breakpoints.up('sm')]: {
|
|
minHeight: 64
|
|
}
|
|
}
|
|
}, mixins);
|
|
} |