Form button shrinks on mobile
So this falls into the category of fixing one problem causes another.
I added some custom CSS to deal with an alignment problem of labels and checkboxes on mobile that I found in another community article. However, when I use this code, it makes the submit button have a very narrow height on mobile. I tried removing the line that references button height and that didn't seem to help. No matter what I do the button looks the same. Any idea what I'm missing?
@media screen and (max-width:480px) {
form.mktoForm .mktoCheckboxList {margin-top:0px !important;}
form.mktoForm label.mktoLabel {width:calc(100% - 30px) !important;}
form.mktoForm, form.mktoForm * {padding:0px !important;}
div.mktoForm {width:100% !important; max-width:100% !important; margin:0px !important;}
form.mktoForm {margin:0px !important; width:100% !important; max-width:100% !important;}
.mktoForm .mktoCheckboxList {width:20px !important;}
form.mktoForm button.mktoButton {height:auto !important;}
.mktoButtonRow {display: block !important;text-align: center !important;}
}