Skip to content

Commit

Permalink
Add some basic padding to all form inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
dkotter committed Jun 27, 2024
1 parent 73dc436 commit 8e58243
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mailchimp_widget.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,15 @@ function mailchimp_sf_signup_form( $args = array() ) {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 10px 8px;
width: 100%;
}
.mc_input.mc_phone {
width: auto;
}
select.mc_select {
margin-top: 0.5em;
padding: 10px 8px;
width: 100%;
}
.mc_address_label {
Expand All @@ -101,6 +103,7 @@ function mailchimp_sf_signup_form( $args = array() ) {
display: block;
}
.mc_address_label ~ select {
padding: 10px 8px;
width: 100%;
}
.mc_list li {
Expand All @@ -117,6 +120,7 @@ function mailchimp_sf_signup_form( $args = array() ) {
}
#mc_signup_submit {
margin-top: 1.5em;
padding: 10px 8px;
width: 80%;
}
#mc_unsub_link a {
Expand Down

0 comments on commit 8e58243

Please sign in to comment.