From 7cab47665f7111bd79e7dca29f7a90b6ce854823 Mon Sep 17 00:00:00 2001 From: MariaZ Date: Sun, 28 Nov 2021 14:51:09 +0100 Subject: [PATCH] Fix today day styling in calendar --- components/helpers/calendar.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/components/helpers/calendar.js b/components/helpers/calendar.js index fdedfa8..1ae762b 100644 --- a/components/helpers/calendar.js +++ b/components/helpers/calendar.js @@ -62,8 +62,9 @@ export const todayToCalFormat = () => { const styles = { calendarToday: { - fontFamily: Fonts.bold, - color: Colors.purple, + fontFamily: 'Jost-Bold', + fontWeight: 'bold', + color: Colors.purple }, } @@ -73,6 +74,7 @@ export const calendarTheme = { monthTextColor: Colors.purple, textDayFontFamily: Fonts.main, textMonthFontFamily: Fonts.bold, + textMonthFontWeight: 'bold', textDayHeaderFontFamily: Fonts.bold, textDayFontSize: Sizes.small, textMonthFontSize: Sizes.subtitle,