🐛 fix calendar and aside ui issues

This commit is contained in:
Manuel
2022-09-13 21:15:24 +02:00
parent eaef58751d
commit cee15effa6
2 changed files with 8 additions and 5 deletions

View File

@@ -136,14 +136,17 @@ export default function CalendarComponent(props: any) {
date.getDay() === today.getDay() && date.getDate() === today.getDate()
? {
backgroundColor:
theme.colorScheme === 'dark' ? theme.colors.dark[5] : theme.colors.gray[0],
theme.colorScheme === 'dark' ? theme.colors.dark[5] : theme.colors.gray[0],
margin: 1,
}
: {}
: {
margin: 1,
}
}
styles={{
calendarHeader: {
marginRight: 15,
marginLeft: 15,
marginRight: 40,
marginLeft: 40,
},
}}
allowLevelChange={false}