@thecb/components 11.2.3-beta.1 → 11.2.3-beta.3
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 +136 -22
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +136 -23
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/index.js +1 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.js +1 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.styled.js +1 -1
package/package.json
CHANGED
|
@@ -29,6 +29,7 @@ export { default as PhoneForm } from "./phone-form";
|
|
|
29
29
|
export { default as Popover } from "./popover";
|
|
30
30
|
export { default as RadioGroup } from "./radio-group";
|
|
31
31
|
export { default as RadioSection } from "./radio-section";
|
|
32
|
+
export { default as RegistrationBanner } from "./registration-banner";
|
|
32
33
|
export { default as RegistrationForm } from "./registration-form";
|
|
33
34
|
export { default as ResetConfirmationForm } from "./reset-confirmation-form";
|
|
34
35
|
export { default as ResetPasswordForm } from "./reset-password-form";
|
|
@@ -3,7 +3,7 @@ import { Box, Cluster, Stack } from "../../atoms/layouts";
|
|
|
3
3
|
import ButtonWithLink from "../../atoms/button-with-link/ButtonWithLink";
|
|
4
4
|
import { hexToRGBA } from "../../../util/general";
|
|
5
5
|
|
|
6
|
-
export const BannerContainer = styled(
|
|
6
|
+
export const BannerContainer = styled(Cluster)`
|
|
7
7
|
background: ${({ themeValues }) => hexToRGBA(themeValues.background, 0.9)};
|
|
8
8
|
padding: ${({ isMobile }) => (isMobile ? "1rem 2rem" : " 2rem 8.25rem")};
|
|
9
9
|
`;
|