kwikid-components-react
Version:
KwikID's Component Library in React
13 lines (12 loc) • 1.3 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FormHeaderTitle = exports.FormHeader = exports.FormContainer = void 0;
var _styledComponents = _interopRequireDefault(require("styled-components"));
var _templateObject, _templateObject2, _templateObject3;
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
function _taggedTemplateLiteral(e, t) { return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, { raw: { value: Object.freeze(t) } })); }
const FormHeader = exports.FormHeader = _styledComponents.default.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: stretch;\n justify-content: flex-start;\n\n padding: 1rem 1rem 0rem 1rem;\n"])));
const FormHeaderTitle = exports.FormHeaderTitle = _styledComponents.default.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n font-size: 1.4rem;\n"])));
const FormContainer = exports.FormContainer = _styledComponents.default.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n align-items: stretch;\n justify-content: flex-start;\n\n & > *:not(:last-child) {\n margin-bottom: 1rem;\n }\n"])));