File size: 435 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | @import "@wordpress/base-styles/mixins";
@import "@wordpress/base-styles/variables";
.a4a-form {
display: flex;
flex-direction: column;
gap: 48px;
max-width: 700px;
margin: 0 auto;
@include breakpoint-deprecated("<660px") {
margin-block-end: rem(76px);
}
h1,
h2,
h3,
p {
margin: 0;
padding: 0;
}
}
.a4a-form__heading-title {
@include heading-x-large;
}
.a4a-form__heading-description {
@include body-large;
}
|