Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | 8x | .varClass {
--footerBg: var(--zdt_formAction_bg);
--footerBorder: var(--zdt_formAction_border);
}
.wrapperDiv {
position: relative;
z-index: 1;
composes: varClass;
}
.footerParent {
position: relative;
/* css:theme-validation:ignore */
background-color: var(--footerBg);
/* css:theme-validation:ignore */
border-top: solid 1px var(--footerBorder);
}
.largeFooter {
padding-top: 24px;
padding-bottom: 24px;
}
.mediumFooter {
padding-top: 20px;
padding-bottom: 20px;
}
.smallFooter {
padding-top: 10px;
padding-bottom: 10px;
}
.largePadding {
padding-left: 60px;
}
.mediumPadding {
padding-left: 50px;
}
.xmediumPadding {
padding-left: 30px;
}
.smallPadding {
padding-left: 25px;
}
.xsmallPadding {
padding-left: 20px;
}
.marginRight {
composes: dinblk from '~@zohodesk/components/lib/common/common.module.css';
}
.largeFooter .marginRight,
.mediumFooter .marginRight {
margin-right: 15px;
}
.smallFooter .marginRight {
margin-right: 12px;
}
.marginRight:last-child {
margin-right: 0;
} |