danheron / Heron.MudCalendar

Calendar component for MudBlazor
MIT License
174 stars 33 forks source link

Height Container Number #87

Closed mariajesusborrego closed 8 months ago

mariajesusborrego commented 9 months ago

I need the 'container' that holds the month number to be smaller so that the content of the day is better visualized. image

danheron commented 9 months ago

The class name of that container is mud-cal-month-cell-title. It has a padding on all sides of 8px. You could reduce the padding like this:

.mud-cal-month-cell-title {
  padding: 2px;
}