@thecb/components 11.2.4 → 11.2.5-beta.0
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.cjs.js +9 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +9 -5
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.js +1 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.stories.js +6 -3
- package/src/components/molecules/registration-banner/RegistrationBanner.styled.js +4 -3
package/dist/index.cjs.js
CHANGED
|
@@ -49746,14 +49746,14 @@ var BannerContainer = styled__default(Cluster).withConfig({
|
|
|
49746
49746
|
return adjustHexColor(themeValues.background, 10, "lighten");
|
|
49747
49747
|
}, function (_ref2) {
|
|
49748
49748
|
var isMobile = _ref2.isMobile;
|
|
49749
|
-
return isMobile ? "1rem 2rem" : " 2rem
|
|
49749
|
+
return isMobile ? "1rem 2rem" : " 2rem 1rem";
|
|
49750
49750
|
});
|
|
49751
49751
|
var ContentContainer = styled__default(Cluster).withConfig({
|
|
49752
49752
|
displayName: "RegistrationBannerstyled__ContentContainer",
|
|
49753
49753
|
componentId: "sc-1m1lm4y-1"
|
|
49754
49754
|
})(["padding:0;width:", ";> div{flex-direction:", ";}"], function (_ref3) {
|
|
49755
49755
|
var isMobile = _ref3.isMobile;
|
|
49756
|
-
return isMobile ? "
|
|
49756
|
+
return isMobile ? "100%" : " 1224px";
|
|
49757
49757
|
}, function (_ref4) {
|
|
49758
49758
|
var isMobile = _ref4.isMobile;
|
|
49759
49759
|
return isMobile ? "column" : "row";
|
|
@@ -49761,9 +49761,12 @@ var ContentContainer = styled__default(Cluster).withConfig({
|
|
|
49761
49761
|
var ButtonContainer = styled__default(Stack).withConfig({
|
|
49762
49762
|
displayName: "RegistrationBannerstyled__ButtonContainer",
|
|
49763
49763
|
componentId: "sc-1m1lm4y-2"
|
|
49764
|
-
})(["align-items:center;> a{width:", ";}"], function (_ref5) {
|
|
49764
|
+
})(["align-items:center;> a{width:", ";}padding-left:", ";"], function (_ref5) {
|
|
49765
49765
|
var isMobile = _ref5.isMobile;
|
|
49766
|
-
return isMobile ? "
|
|
49766
|
+
return isMobile ? "100%" : "222px";
|
|
49767
|
+
}, function (_ref6) {
|
|
49768
|
+
var isMobile = _ref6.isMobile;
|
|
49769
|
+
return isMobile ? "0" : " 2rem";
|
|
49767
49770
|
});
|
|
49768
49771
|
var RegisterLink = styled__default(ButtonWithLink).withConfig({
|
|
49769
49772
|
displayName: "RegistrationBannerstyled__RegisterLink",
|
|
@@ -49796,7 +49799,8 @@ var RegistrationBanner = function RegistrationBanner(_ref) {
|
|
|
49796
49799
|
align: "center",
|
|
49797
49800
|
justify: "space-between",
|
|
49798
49801
|
overflow: "visible",
|
|
49799
|
-
isMobile: isMobile
|
|
49802
|
+
isMobile: isMobile,
|
|
49803
|
+
nowrap: true
|
|
49800
49804
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
49801
49805
|
padding: "0",
|
|
49802
49806
|
textAlign: "left"
|