UNPKG

kwikid-components-react

Version:

KwikID's Component Library in React

37 lines (33 loc) 991 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.FormFooterMain = exports.FormFooterDivider = exports.FormFooter = void 0; var _styledComponents = _interopRequireDefault(require("styled-components")); function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; } const FormFooter = exports.FormFooter = _styledComponents.default.div` display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; padding: 0rem 1rem 1rem 1rem; & > *:not(:last-child) { margin-bottom: 1rem; } `; const FormFooterDivider = exports.FormFooterDivider = _styledComponents.default.hr` width: 100%; margin: 0; height: 1px; background: #f0f0f0; border: none; `; const FormFooterMain = exports.FormFooterMain = _styledComponents.default.div` display: flex; flex-direction: row; align-items: center; justify-content: space-between; & > *:not(:last-child) { margin-right: 1rem; } `;