I use the QCalendarWidget to create a calendar.
I made the calendar and its font larger, but I don't know how to make the arrows of the calendar larger too. By arrows, I mean to the green ones at the top, that let you go back and forth.
I am working with python 2.7, and using PyQt4.
creating the calendar using the QCalendarWidget -
cal = QtGui.QCalendarWidget(self)
IMAGE: You could see that the arrows are not proportional to the calendar's size.

One possible solution is to set the iconSize qproperty with Qt Style Sheet:
Another possible solution is to access each button using findChild and set the iconSize: