Currently, I am integrating Fullcalendar v5 into our Angular project and am looking to customize the Fullcalendar toolbar title color and size.
In the styles.scss file, I inserted the following CSS code:
.fc .fc-toolbar-title {
font-size: 1.2em;
color: blue !important;
}
To troubleshoot any potential errors in implementation, I also tried this in the angular example project with no success. It appears that the Fullcalendar stylesheet is loaded after my custom CSS rules.
What is the best method for making additional CSS customizations to Fullcalendar, aside from using the standard CSS variables provided?