I have integrated a datepicker using the library "@mui/x-date-pickers/DatePicker".
import { DatePicker } from "@mui/x-date-pickers/DatePicker";
import { AdapterMoment } from "@mui/x-date-pickers/AdapterMoment";
import { LocalizationProvider } from "@mui/x-date-pickers/LocalizationProvider";
<LocalizationProvider dateAdapter={AdapterMoment}>
<DatePicker
value={value}
onChange={(newValue) => {
setValue(newValue);
}}
renderInput={(params) => <TextField {...params} />}
/>
</LocalizationProvider>
I want the dates and weekdays to appear in a straight column
However, the columns are not aligned as desired
Could it be that I accidentally altered the CSS settings?