This should be easy to customize but for whatever reason/s I’m unable to change font size of SqPaymentForm iframes. I’m working with the css file found here & from the screenshot below you can see it recognizes the background color css tag (I changed it to black just to test). The css I have now is
/* Define how SqPaymentForm iframes should look */
.sq-input {
font-size: 400px !important; /* IGNORES THIS TAG */
height: 56px;
box-sizing: border-box;
border: 1px solid #E0E2E3;
background-color: black; /* THIS WORKS FINE */
border-radius: 6px;
display: inline-block;
-webkit-transition: border-color .2s ease-in-out;
-moz-transition: border-color .2s ease-in-out;
-ms-transition: border-color .2s ease-in-out;
transition: border-color .2s ease-in-out;
}
You can see the black background (doesn’t cover entire input but at least it’s recognized) but the font clearly isn’t 400px or anything other than the default even with the !important override. I do import a css theme for the entire page but I don’t think it would impact font size or if there’s something else going on. Also, the text isn’t vertically centered for the inputs…