1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/esm/internals/components/PickerViewRoot/PickerViewRoot.js
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

10 lines
No EOL
307 B
JavaScript

import { styled } from '@mui/material/styles';
import { DIALOG_WIDTH, VIEW_HEIGHT } from "../../constants/dimensions.js";
export const PickerViewRoot = styled('div')({
overflow: 'hidden',
width: DIALOG_WIDTH,
maxHeight: VIEW_HEIGHT,
display: 'flex',
flexDirection: 'column',
margin: '0 auto'
});