ui-kit-ck-consultant 0.5.190 → 0.5.191
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +3 -1
- package/dist/index.js +22 -4
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +22 -4
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
@@ -2857,11 +2857,12 @@
|
|
2857
2857
|
|
2858
2858
|
|
2859
2859
|
._2OnkF {
|
2860
|
-
display:
|
2860
|
+
display: block;
|
2861
2861
|
background-color: var(--fourth-color);
|
2862
2862
|
padding: 1rem;
|
2863
2863
|
margin: -30px;
|
2864
2864
|
margin-top: 0;
|
2865
|
+
text-align: center;
|
2865
2866
|
}
|
2866
2867
|
|
2867
2868
|
._2OnkF > div {
|
@@ -2878,6 +2879,7 @@
|
|
2878
2879
|
text-decoration: none;
|
2879
2880
|
color: var(--white);
|
2880
2881
|
}
|
2882
|
+
|
2881
2883
|
._3iRjz {
|
2882
2884
|
display: inline-flex;
|
2883
2885
|
flex-direction: column;
|
package/dist/index.js
CHANGED
@@ -3833,17 +3833,35 @@ var Footer = /*#__PURE__*/function (_React$Component) {
|
|
3833
3833
|
_proto.render = function render() {
|
3834
3834
|
return /*#__PURE__*/React__default.createElement("div", {
|
3835
3835
|
className: style$v.footer
|
3836
|
-
}, /*#__PURE__*/React__default.createElement(
|
3836
|
+
}, /*#__PURE__*/React__default.createElement(reactFlexboxGrid.Row, null, /*#__PURE__*/React__default.createElement(reactFlexboxGrid.Col, {
|
3837
|
+
xs: 12,
|
3838
|
+
md: 12,
|
3839
|
+
lg: 4,
|
3840
|
+
className: "mt-5 mb-5 d-flex"
|
3841
|
+
}, /*#__PURE__*/React__default.createElement("img", {
|
3842
|
+
className: "m-auto",
|
3837
3843
|
src: this.props.logo
|
3838
|
-
})), /*#__PURE__*/React__default.createElement(
|
3844
|
+
})), /*#__PURE__*/React__default.createElement(reactFlexboxGrid.Col, {
|
3845
|
+
xs: 12,
|
3846
|
+
md: 6,
|
3847
|
+
lg: 4,
|
3848
|
+
className: "mt-5 mb-5 d-flex"
|
3849
|
+
}, /*#__PURE__*/React__default.createElement("a", {
|
3850
|
+
className: "m-auto",
|
3839
3851
|
target: "_blank",
|
3840
3852
|
href: this.props.legal,
|
3841
3853
|
onClick: this.props.onLegalClick
|
3842
|
-
}, "Mentions L\xE9gales")), /*#__PURE__*/React__default.createElement(
|
3854
|
+
}, "Mentions L\xE9gales")), /*#__PURE__*/React__default.createElement(reactFlexboxGrid.Col, {
|
3855
|
+
xs: 12,
|
3856
|
+
md: 6,
|
3857
|
+
lg: 4,
|
3858
|
+
className: "mt-5 mb-5 d-flex"
|
3859
|
+
}, /*#__PURE__*/React__default.createElement("a", {
|
3860
|
+
className: "m-auto",
|
3843
3861
|
target: "_blank",
|
3844
3862
|
href: this.props.rgpd,
|
3845
3863
|
onClick: this.props.onRgpdClick
|
3846
|
-
}, "RGPD & Cookies")));
|
3864
|
+
}, "RGPD & Cookies"))));
|
3847
3865
|
};
|
3848
3866
|
|
3849
3867
|
return Footer;
|