Recently I started using Vue along with the ionic framework. This is a snippet of code from my application:
<ion-action-sheet
:is-open="isActionSheetOpen"
header="Choose Payment"
mode="ios"
:buttons="buttons"
@didDismiss="setOpen(false)"
class="my-custom-class"
></ion-action-sheet>
I am looking to make the font size of the
header="Choose Payment"
text to be 25px, but I haven't been able to find any official documentation on how to do this.
Any suggestions on how I can achieve this?
I have attempted to add custom CSS for the class shown below:
ion-action-sheet.my-custom-class {
--font-size: 25px;
}