How can I change the font size of Affirm injection on product pages?

Hello! Needing to change the font size of the affirm injection on our product pages. Can anyone help?

https://elegantworld.com/collections/rings/products/journey-14k-solid-gold-ring

Thanks in advance!

@HonorDigital

You want to increase the size of this https://nimb.ws/DpAgyQ

Add below css into base.css
online store->theme->base.css

.__affirm-logo.__ligature__affirm_full_logo__ {
    font-size: 2.236em !important;
}

@HonorDigital
You can try follow this path:
Themes => edit code => asset => theme.css
and add this code to bottom of the file theme.css

.affirm-as-low-as {
font-size: 30px!important;
}

Change the number to size you want.

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
.__affirm-logo.__ligature__affirm_full_logo__ {
font-size: 30px !important;
}