@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.esm.js
CHANGED
|
@@ -49738,14 +49738,14 @@ var BannerContainer = styled(Cluster).withConfig({
|
|
|
49738
49738
|
return adjustHexColor(themeValues.background, 10, "lighten");
|
|
49739
49739
|
}, function (_ref2) {
|
|
49740
49740
|
var isMobile = _ref2.isMobile;
|
|
49741
|
-
return isMobile ? "1rem 2rem" : " 2rem
|
|
49741
|
+
return isMobile ? "1rem 2rem" : " 2rem 1rem";
|
|
49742
49742
|
});
|
|
49743
49743
|
var ContentContainer = styled(Cluster).withConfig({
|
|
49744
49744
|
displayName: "RegistrationBannerstyled__ContentContainer",
|
|
49745
49745
|
componentId: "sc-1m1lm4y-1"
|
|
49746
49746
|
})(["padding:0;width:", ";> div{flex-direction:", ";}"], function (_ref3) {
|
|
49747
49747
|
var isMobile = _ref3.isMobile;
|
|
49748
|
-
return isMobile ? "
|
|
49748
|
+
return isMobile ? "100%" : " 1224px";
|
|
49749
49749
|
}, function (_ref4) {
|
|
49750
49750
|
var isMobile = _ref4.isMobile;
|
|
49751
49751
|
return isMobile ? "column" : "row";
|
|
@@ -49753,9 +49753,12 @@ var ContentContainer = styled(Cluster).withConfig({
|
|
|
49753
49753
|
var ButtonContainer = styled(Stack).withConfig({
|
|
49754
49754
|
displayName: "RegistrationBannerstyled__ButtonContainer",
|
|
49755
49755
|
componentId: "sc-1m1lm4y-2"
|
|
49756
|
-
})(["align-items:center;> a{width:", ";}"], function (_ref5) {
|
|
49756
|
+
})(["align-items:center;> a{width:", ";}padding-left:", ";"], function (_ref5) {
|
|
49757
49757
|
var isMobile = _ref5.isMobile;
|
|
49758
|
-
return isMobile ? "
|
|
49758
|
+
return isMobile ? "100%" : "222px";
|
|
49759
|
+
}, function (_ref6) {
|
|
49760
|
+
var isMobile = _ref6.isMobile;
|
|
49761
|
+
return isMobile ? "0" : " 2rem";
|
|
49759
49762
|
});
|
|
49760
49763
|
var RegisterLink = styled(ButtonWithLink).withConfig({
|
|
49761
49764
|
displayName: "RegistrationBannerstyled__RegisterLink",
|
|
@@ -49788,7 +49791,8 @@ var RegistrationBanner = function RegistrationBanner(_ref) {
|
|
|
49788
49791
|
align: "center",
|
|
49789
49792
|
justify: "space-between",
|
|
49790
49793
|
overflow: "visible",
|
|
49791
|
-
isMobile: isMobile
|
|
49794
|
+
isMobile: isMobile,
|
|
49795
|
+
nowrap: true
|
|
49792
49796
|
}, /*#__PURE__*/React.createElement(Box, {
|
|
49793
49797
|
padding: "0",
|
|
49794
49798
|
textAlign: "left"
|