| 1 |
/** |
| 2 |
* Replicates CSS styles provided by block themes for older non-block themes |
| 3 |
* that may not include these definitions, resulting in incorrect spacing. |
| 4 |
*/ |
| 5 |
form.formkit-form { |
| 6 |
|
| 7 |
&[data-format="inline"]="inline""] { |
| 8 |
margin-left: auto; |
| 9 |
margin-right: auto; |
| 10 |
margin-bottom: 20px; |
| 11 |
|
| 12 |
@media only screen and (min-width: 482px) { |
| 13 |
margin-bottom: 30px; |
| 14 |
} |
| 15 |
} |
| 16 |
} |
| 17 |
|
| 18 |
/** |
| 19 |
* Set a high z-index on sticky bar forms, to ensure sites |
| 20 |
* that use a z-index on a header / menu don't cover the |
| 21 |
* sticky bar form. |
| 22 |
*/ |
| 23 |
.formkit-sticky-bar { |
| 24 |
z-index: 999999 !important; |
| 25 |
} |
| 26 |
|