@openlettermarketing/olc-react-sdk 2.1.4 → 2.1.5-beta.2
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/.eslintignore +1 -0
- package/.eslintrc.cjs +18 -0
- package/.eslintrc.yml +47 -0
- package/.github/workflows/publish-beta.yml +154 -0
- package/.github/workflows/publish-production.yml +143 -0
- package/.prettierignore +3 -0
- package/.prettierrc.yml +5 -0
- package/CHANGELOG.md +4 -0
- package/babel.config.json +10 -0
- package/build/index.js +82 -82
- package/build/index.js.map +1 -1
- package/build/types/version.d.ts +1 -1
- package/examples/.eslintrc.yml +4 -0
- package/index.html +18 -0
- package/package.json +1 -1
- package/public/vite.svg +1 -0
- package/src/App.tsx +209 -0
- package/src/assets/Fonts/Lexi-Regular.ttf +0 -0
- package/src/assets/images/create-template/prebuilt.svg +13 -0
- package/src/assets/images/create-template/scratch.svg +4 -0
- package/src/assets/images/input/cancel.tsx +20 -0
- package/src/assets/images/input/search.tsx +20 -0
- package/src/assets/images/input/select-cancel.tsx +17 -0
- package/src/assets/images/modal-icons/add.tsx +36 -0
- package/src/assets/images/modal-icons/cancel-file.tsx +12 -0
- package/src/assets/images/modal-icons/cancel-input.tsx +13 -0
- package/src/assets/images/modal-icons/cancel.tsx +35 -0
- package/src/assets/images/modal-icons/close-new.svg +3 -0
- package/src/assets/images/modal-icons/confirm-close-icon.tsx +14 -0
- package/src/assets/images/modal-icons/confirm-new.tsx +22 -0
- package/src/assets/images/modal-icons/confirm.svg +12 -0
- package/src/assets/images/modal-icons/cross.tsx +23 -0
- package/src/assets/images/modal-icons/del.tsx +19 -0
- package/src/assets/images/modal-icons/design-icon.tsx +22 -0
- package/src/assets/images/modal-icons/doc.tsx +43 -0
- package/src/assets/images/modal-icons/docx.tsx +43 -0
- package/src/assets/images/modal-icons/envelope-icon.tsx +26 -0
- package/src/assets/images/modal-icons/info.tsx +19 -0
- package/src/assets/images/modal-icons/jpeg.tsx +43 -0
- package/src/assets/images/modal-icons/jpg.tsx +43 -0
- package/src/assets/images/modal-icons/modal-cros.svg +4 -0
- package/src/assets/images/modal-icons/modal-cross.tsx +37 -0
- package/src/assets/images/modal-icons/new-cancel.tsx +11 -0
- package/src/assets/images/modal-icons/order-download.tsx +42 -0
- package/src/assets/images/modal-icons/pdf.tsx +51 -0
- package/src/assets/images/modal-icons/png.tsx +43 -0
- package/src/assets/images/modal-icons/save.tsx +23 -0
- package/src/assets/images/modal-icons/template-copy.tsx +25 -0
- package/src/assets/images/modal-icons/tool-cancel.tsx +25 -0
- package/src/assets/images/products/bi-new.svg +23 -0
- package/src/assets/images/products/left-arrow.svg +17 -0
- package/src/assets/images/products/personal-new.tsx +31 -0
- package/src/assets/images/products/postcard-new.tsx +27 -0
- package/src/assets/images/products/professional-new.tsx +24 -0
- package/src/assets/images/products/real-new.tsx +30 -0
- package/src/assets/images/products/right-arrow.svg +17 -0
- package/src/assets/images/products/snap-new.svg +31 -0
- package/src/assets/images/templates/actions.svg +3 -0
- package/src/assets/images/templates/address-block-icon.tsx +62 -0
- package/src/assets/images/templates/archive.svg +3 -0
- package/src/assets/images/templates/arrow-down.tsx +27 -0
- package/src/assets/images/templates/back-arrow.tsx +19 -0
- package/src/assets/images/templates/bi-fold-self-mailers.tsx +28 -0
- package/src/assets/images/templates/check.svg +3 -0
- package/src/assets/images/templates/code.svg +10 -0
- package/src/assets/images/templates/content-copy-icon.tsx +24 -0
- package/src/assets/images/templates/custom-add-on-icon.tsx +18 -0
- package/src/assets/images/templates/custom-qr-section-icon.tsx +9 -0
- package/src/assets/images/templates/custom-template.tsx +23 -0
- package/src/assets/images/templates/designer.tsx +43 -0
- package/src/assets/images/templates/dot.tsx +22 -0
- package/src/assets/images/templates/download-v2.svg +4 -0
- package/src/assets/images/templates/download.svg +4 -0
- package/src/assets/images/templates/dummy-template.tsx +76 -0
- package/src/assets/images/templates/dynamic-field.tsx +119 -0
- package/src/assets/images/templates/edit-pencil-icon.tsx +21 -0
- package/src/assets/images/templates/edit.svg +3 -0
- package/src/assets/images/templates/epo-icon.tsx +16 -0
- package/src/assets/images/templates/field.tsx +29 -0
- package/src/assets/images/templates/gsv-icon.tsx +31 -0
- package/src/assets/images/templates/info-icon.tsx +37 -0
- package/src/assets/images/templates/left-arrow.svg +17 -0
- package/src/assets/images/templates/pencil.svg +3 -0
- package/src/assets/images/templates/personal-letter.tsx +53 -0
- package/src/assets/images/templates/postcard.tsx +32 -0
- package/src/assets/images/templates/professional-letter.tsx +53 -0
- package/src/assets/images/templates/qr-code.tsx +13 -0
- package/src/assets/images/templates/real-penned-letters.tsx +57 -0
- package/src/assets/images/templates/right-arrow.svg +17 -0
- package/src/assets/images/templates/size-image-lg.tsx +20 -0
- package/src/assets/images/templates/size-image-mid.tsx +20 -0
- package/src/assets/images/templates/size-image-xl.tsx +20 -0
- package/src/assets/images/templates/size-image.tsx +20 -0
- package/src/assets/images/templates/snap-pack.tsx +67 -0
- package/src/assets/images/templates/template-default-design.tsx +21 -0
- package/src/assets/images/templates/trash-upload.svg +3 -0
- package/src/assets/images/templates/trash.svg +3 -0
- package/src/assets/images/templates/tri-fold-self-mailers.tsx +93 -0
- package/src/assets/images/templates/upload-image.svg +10 -0
- package/src/assets/images/templates/x.svg +3 -0
- package/src/assets/images/thumbnails/one.svg +9 -0
- package/src/assets/images/tooltip/tool-arrow.tsx +25 -0
- package/src/components/CreateTemplate/V2/index.tsx +525 -0
- package/src/components/CreateTemplate/V2/styles.scss +372 -0
- package/src/components/CreateTemplate/index.tsx +508 -0
- package/src/components/CreateTemplate/styles.scss +404 -0
- package/src/components/GenericUIBlocks/Button/index.tsx +54 -0
- package/src/components/GenericUIBlocks/Button/styles.scss +43 -0
- package/src/components/GenericUIBlocks/CircularProgress/index.tsx +18 -0
- package/src/components/GenericUIBlocks/CircularProgress/styles.scss +93 -0
- package/src/components/GenericUIBlocks/CustomTooltip/index.tsx +88 -0
- package/src/components/GenericUIBlocks/CustomTooltip/styles.scss +19 -0
- package/src/components/GenericUIBlocks/Dialog/V2/index.tsx +227 -0
- package/src/components/GenericUIBlocks/Dialog/V2/styles.scss +289 -0
- package/src/components/GenericUIBlocks/Dialog/index.tsx +185 -0
- package/src/components/GenericUIBlocks/Dialog/styles.scss +227 -0
- package/src/components/GenericUIBlocks/Divider/index.tsx +12 -0
- package/src/components/GenericUIBlocks/Divider/styles.scss +7 -0
- package/src/components/GenericUIBlocks/GeneralSelect/index.tsx +114 -0
- package/src/components/GenericUIBlocks/GeneralSelect/styles.scss +406 -0
- package/src/components/GenericUIBlocks/GeneralTooltip/index.tsx +25 -0
- package/src/components/GenericUIBlocks/GeneralTooltip/styles.scss +20 -0
- package/src/components/GenericUIBlocks/GenericSnackbar/Toast/index.tsx +91 -0
- package/src/components/GenericUIBlocks/GenericSnackbar/Toast/styles.scss +92 -0
- package/src/components/GenericUIBlocks/Grid/index.tsx +82 -0
- package/src/components/GenericUIBlocks/Input/index.tsx +269 -0
- package/src/components/GenericUIBlocks/Input/styles.scss +332 -0
- package/src/components/GenericUIBlocks/Tabs/index.tsx +71 -0
- package/src/components/GenericUIBlocks/Tabs/styles.scss +42 -0
- package/src/components/GenericUIBlocks/Typography/index.tsx +18 -0
- package/src/components/GenericUIBlocks/Typography/styles.scss +27 -0
- package/src/components/SidePanel/CustomAddOns/index.tsx +342 -0
- package/src/components/SidePanel/CustomAddOns/styles.scss +86 -0
- package/src/components/SidePanel/CustomBlockColors/index.tsx +211 -0
- package/src/components/SidePanel/CustomBlockColors/styles.scss +80 -0
- package/src/components/SidePanel/CustomFields/customFieldSection.tsx +547 -0
- package/src/components/SidePanel/CustomFields/styles.scss +64 -0
- package/src/components/SidePanel/CustomQRCode/V2/QRCodeModal/index.tsx +172 -0
- package/src/components/SidePanel/CustomQRCode/V2/QRCodeModal/styles.scss +46 -0
- package/src/components/SidePanel/CustomQRCode/index.tsx +1070 -0
- package/src/components/SidePanel/CustomQRCode/styles.scss +149 -0
- package/src/components/SidePanel/CustomUploads/V2/index.tsx +542 -0
- package/src/components/SidePanel/CustomUploads/V2/styles.scss +267 -0
- package/src/components/SidePanel/CustomUploads/index.tsx +301 -0
- package/src/components/SidePanel/Templates/ModalGallery/HireDesigner/index.tsx +424 -0
- package/src/components/SidePanel/Templates/ModalGallery/HireDesigner/styles.scss +180 -0
- package/src/components/SidePanel/Templates/ModalGallery/V2/index.tsx +235 -0
- package/src/components/SidePanel/Templates/ModalGallery/V2/styles.scss +244 -0
- package/src/components/SidePanel/Templates/ModalGallery/index.tsx +231 -0
- package/src/components/SidePanel/Templates/SideBarGallery/index.tsx +233 -0
- package/src/components/SidePanel/Templates/SideBarGallery/styles.scss +152 -0
- package/src/components/SidePanel/Templates/TemplatesCard/V2/index.tsx +149 -0
- package/src/components/SidePanel/Templates/TemplatesCard/V2/styles.scss +156 -0
- package/src/components/SidePanel/Templates/TemplatesCard/index.tsx +160 -0
- package/src/components/SidePanel/Templates/TemplatesCard/styles.scss +98 -0
- package/src/components/SidePanel/Templates/customTemplateSection.tsx +793 -0
- package/src/components/SidePanel/Templates/styles.scss +244 -0
- package/src/components/SidePanel/index.tsx +160 -0
- package/src/components/TemplateBuilder/index.tsx +585 -0
- package/src/components/TemplateBuilder/styles.scss +100 -0
- package/src/components/TemplateTypes/index.tsx +96 -0
- package/src/components/TemplateTypes/styles.scss +91 -0
- package/src/components/TopNavigation/ConfirmNavigateDialog/index.tsx +81 -0
- package/src/components/TopNavigation/ConfirmNavigateDialog/styles.scss +123 -0
- package/src/components/TopNavigation/DuplicateTemplateModal.tsx +103 -0
- package/src/components/TopNavigation/EditTemplateNameModel/index.tsx +71 -0
- package/src/components/TopNavigation/EditTemplateNameModel/styles.scss +88 -0
- package/src/components/TopNavigation/SaveTemplateModel/index.tsx +201 -0
- package/src/components/TopNavigation/SaveTemplateModel/styles.scss +128 -0
- package/src/components/TopNavigation/index.tsx +938 -0
- package/src/components/TopNavigation/styles.scss +303 -0
- package/src/importMeta.d.ts +31 -0
- package/src/index.scss +131 -0
- package/src/index.tsx +238 -0
- package/src/libs/test.ts +7 -0
- package/src/redux/actions/action-types.ts +52 -0
- package/src/redux/actions/customQRCodeActions.ts +54 -0
- package/src/redux/actions/snackbarActions.ts +16 -0
- package/src/redux/actions/templateActions.ts +236 -0
- package/src/redux/reducers/customFieldReducer.ts +99 -0
- package/src/redux/reducers/customQRCodeReducer.ts +58 -0
- package/src/redux/reducers/index.ts +15 -0
- package/src/redux/reducers/snackbarReducer.ts +40 -0
- package/src/redux/reducers/templateReducer.ts +485 -0
- package/src/redux/store.ts +18 -0
- package/src/styles/colors.scss +61 -0
- package/src/test/mocks.js +89 -0
- package/src/test/setupJest.js +1 -0
- package/src/utils/api.ts +36 -0
- package/src/utils/constants.ts +182 -0
- package/src/utils/customStyles.ts +45 -0
- package/src/utils/fetchWrapper.ts +73 -0
- package/src/utils/fonts.json +1597 -0
- package/src/utils/helper.ts +205 -0
- package/src/utils/local-storage.ts +15 -0
- package/src/utils/message.ts +162 -0
- package/src/utils/products.ts +186 -0
- package/src/utils/template-builder.ts +328 -0
- package/src/utils/templateIdentifierArea/biFold.ts +107 -0
- package/src/utils/templateIdentifierArea/index.ts +35 -0
- package/src/utils/templateIdentifierArea/personal.ts +107 -0
- package/src/utils/templateIdentifierArea/postCards.ts +163 -0
- package/src/utils/templateIdentifierArea/professional.ts +125 -0
- package/src/utils/templateIdentifierArea/snapPack.ts +107 -0
- package/src/utils/templateIdentifierArea/triFold.ts +107 -0
- package/src/utils/templateRestrictedArea/biFold.ts +329 -0
- package/src/utils/templateRestrictedArea/nonWindowProfessional.ts +90 -0
- package/src/utils/templateRestrictedArea/personal.ts +90 -0
- package/src/utils/templateRestrictedArea/postCard.ts +334 -0
- package/src/utils/templateRestrictedArea/postCardJumbo.tsx +408 -0
- package/src/utils/templateRestrictedArea/professional.ts +318 -0
- package/src/utils/templateRestrictedArea/realPenned.ts +233 -0
- package/src/utils/templateRestrictedArea/snapPack.ts +1009 -0
- package/src/utils/templateRestrictedArea/triFold.ts +330 -0
- package/src/utils/templateSafetyBorders/biFold.ts +91 -0
- package/src/utils/templateSafetyBorders/index.ts +43 -0
- package/src/utils/templateSafetyBorders/personal.ts +41 -0
- package/src/utils/templateSafetyBorders/postCards.ts +259 -0
- package/src/utils/templateSafetyBorders/professional.ts +78 -0
- package/src/utils/templateSafetyBorders/snapPack.ts +165 -0
- package/src/utils/templateSafetyBorders/triFold.ts +114 -0
- package/src/utils/templateSafetyBorders/types.d.ts +68 -0
- package/src/utils/types.ts +12 -0
- package/src/v2Theme.scss +142 -0
- package/tsconfig.json +29 -0
- package/tsconfig.node.json +12 -0
- package/update-version.js +23 -0
- package/version.js +1 -0
- package/vite.config.ts +8 -0
- package/webpack.config.js +80 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import React from 'react'
|
|
2
|
+
|
|
3
|
+
// hoooks
|
|
4
|
+
import { useDispatch, useSelector } from 'react-redux';
|
|
5
|
+
import { AppDispatch, RootState } from '../../../../../redux/store';
|
|
6
|
+
|
|
7
|
+
// Components
|
|
8
|
+
import Dialog from '../../../../GenericUIBlocks/Dialog/V2';
|
|
9
|
+
import GeneralSelect from '../../../../GenericUIBlocks/GeneralSelect';
|
|
10
|
+
|
|
11
|
+
// Messages
|
|
12
|
+
import { MESSAGES } from '../../../../../utils/message';
|
|
13
|
+
|
|
14
|
+
// Icons
|
|
15
|
+
// @ts-ignore
|
|
16
|
+
import Input from '../../../../GenericUIBlocks/Input';
|
|
17
|
+
|
|
18
|
+
// Styles
|
|
19
|
+
import './styles.scss'
|
|
20
|
+
|
|
21
|
+
const designDialogStyles = {
|
|
22
|
+
maxWidth: '488px',
|
|
23
|
+
backgroundColor: '#fff',
|
|
24
|
+
padding: '39px',
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
// Interface for QRCodeModal props
|
|
28
|
+
interface QRCodeModalProps {
|
|
29
|
+
show: boolean;
|
|
30
|
+
utms?: any;
|
|
31
|
+
utmFields?: any;
|
|
32
|
+
handleSelect?: any;
|
|
33
|
+
isEditing?: boolean;
|
|
34
|
+
setQrUrl: (value: string) => void;
|
|
35
|
+
setUtmSource: (value: string) => void;
|
|
36
|
+
setUtmMedium: (value: string) => void;
|
|
37
|
+
setCustomUtms: (utms: string[]) => void;
|
|
38
|
+
handleDialogChange: (model: string) => void;
|
|
39
|
+
handleClose: () => void;
|
|
40
|
+
setUtmCampaignName: (value: string) => void;
|
|
41
|
+
addNewQRCode: () => void;
|
|
42
|
+
loading: boolean;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
const QRCodeModal: React.FC<QRCodeModalProps> = ({
|
|
46
|
+
show,
|
|
47
|
+
utms,
|
|
48
|
+
utmFields,
|
|
49
|
+
handleSelect,
|
|
50
|
+
isEditing,
|
|
51
|
+
handleDialogChange,
|
|
52
|
+
handleClose,
|
|
53
|
+
setUtmCampaignName,
|
|
54
|
+
setQrUrl,
|
|
55
|
+
setUtmSource,
|
|
56
|
+
setUtmMedium,
|
|
57
|
+
addNewQRCode,
|
|
58
|
+
loading
|
|
59
|
+
}) => {
|
|
60
|
+
|
|
61
|
+
const url = useSelector((state: RootState) => state.customQRCode.url);
|
|
62
|
+
const utmSource = useSelector((state: RootState) => state.customQRCode.utmSource);
|
|
63
|
+
const utmMedium = useSelector((state: RootState) => state.customQRCode.utmMedium);
|
|
64
|
+
const utmCampaignName = useSelector((state: RootState) => state.customQRCode.utmCampaignName);
|
|
65
|
+
const customUtms = useSelector((state: RootState) => state.customQRCode.customUtms);
|
|
66
|
+
const isQR = useSelector((state: RootState) => state.customQRCode.isQR);
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
const dispatch: AppDispatch = useDispatch();
|
|
70
|
+
|
|
71
|
+
return (
|
|
72
|
+
<Dialog
|
|
73
|
+
title={isEditing ? MESSAGES.QR_CODE_MODAL.UPDATE_TITLE : MESSAGES.QR_CODE_MODAL.CREATE_TITLE}
|
|
74
|
+
subHeading={''}
|
|
75
|
+
description={''}
|
|
76
|
+
open={show}
|
|
77
|
+
handleClose={() => handleClose()}
|
|
78
|
+
onCancel={() => handleClose()}
|
|
79
|
+
onSubmit={() => addNewQRCode()}
|
|
80
|
+
customStyles={designDialogStyles}
|
|
81
|
+
cancelText="Cancel"
|
|
82
|
+
submitText="Save"
|
|
83
|
+
currentTheme="v2"
|
|
84
|
+
isQRCode={true}
|
|
85
|
+
loading={loading}
|
|
86
|
+
>
|
|
87
|
+
<div className="qr-modal-input-wrapper">
|
|
88
|
+
<Input
|
|
89
|
+
type="text"
|
|
90
|
+
value={utmCampaignName}
|
|
91
|
+
onChange={(e: any) => {
|
|
92
|
+
dispatch(setUtmCampaignName(e.target.value));
|
|
93
|
+
}}
|
|
94
|
+
placeholder={MESSAGES.QR_CODE_MODAL.INPUT.PLACEHOLDER}
|
|
95
|
+
inputIcon={false}
|
|
96
|
+
label={MESSAGES.QR_CODE_MODAL.INPUT.LABEL}
|
|
97
|
+
currentTheme="v2"
|
|
98
|
+
required={true}
|
|
99
|
+
/>
|
|
100
|
+
<Input
|
|
101
|
+
type="text"
|
|
102
|
+
value={url}
|
|
103
|
+
onChange={(e: any) => {
|
|
104
|
+
dispatch(setQrUrl(e.target.value));
|
|
105
|
+
}}
|
|
106
|
+
placeholder="Enter QR URL"
|
|
107
|
+
inputIcon={false}
|
|
108
|
+
label="QR URL"
|
|
109
|
+
currentTheme="v2"
|
|
110
|
+
required={true}
|
|
111
|
+
/>
|
|
112
|
+
<div className="utm-inputs">
|
|
113
|
+
<Input
|
|
114
|
+
type="text"
|
|
115
|
+
value={utmSource}
|
|
116
|
+
onChange={(e: any) => {
|
|
117
|
+
dispatch(setUtmSource(e.target.value));
|
|
118
|
+
}}
|
|
119
|
+
placeholder="Enter UTM Source"
|
|
120
|
+
inputIcon={false}
|
|
121
|
+
error={''}
|
|
122
|
+
label="UTM Source"
|
|
123
|
+
currentTheme="v2"
|
|
124
|
+
isClearable
|
|
125
|
+
removeSearchInput={() => {
|
|
126
|
+
dispatch(setUtmSource(''));
|
|
127
|
+
}}
|
|
128
|
+
/>
|
|
129
|
+
<Input
|
|
130
|
+
type="text"
|
|
131
|
+
value={utmMedium}
|
|
132
|
+
onChange={(e: any) => {
|
|
133
|
+
dispatch(setUtmMedium(e.target.value));
|
|
134
|
+
}}
|
|
135
|
+
placeholder="Enter UTM Medium"
|
|
136
|
+
inputIcon={false}
|
|
137
|
+
error={''}
|
|
138
|
+
label="UTM Medium"
|
|
139
|
+
currentTheme="v2"
|
|
140
|
+
isClearable
|
|
141
|
+
removeSearchInput={() => {
|
|
142
|
+
dispatch(setUtmMedium(''));
|
|
143
|
+
}}
|
|
144
|
+
/>
|
|
145
|
+
</div>
|
|
146
|
+
|
|
147
|
+
{utms?.map((utm: string, idx: any) => {
|
|
148
|
+
return (
|
|
149
|
+
<div className="qr-input-wrapper-v2" key={idx}>
|
|
150
|
+
<label>{utm.toUpperCase().replace(/\_/g, ' ')}:</label>
|
|
151
|
+
<GeneralSelect
|
|
152
|
+
placeholder={`Search / Select Custom UTM ${idx + 1}`}
|
|
153
|
+
options={utmFields as any}
|
|
154
|
+
setSelectedValue={(value: any) => handleSelect(utm, value)}
|
|
155
|
+
selectedValue={customUtms[utm] || (null as any)}
|
|
156
|
+
builderSelect={true}
|
|
157
|
+
clearField={true}
|
|
158
|
+
search={true}
|
|
159
|
+
qrField={true}
|
|
160
|
+
isError={false}
|
|
161
|
+
gallerySelect={false}
|
|
162
|
+
currentTheme="v2"
|
|
163
|
+
/>
|
|
164
|
+
</div>
|
|
165
|
+
);
|
|
166
|
+
})}
|
|
167
|
+
</div>
|
|
168
|
+
</Dialog>
|
|
169
|
+
)
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
export default QRCodeModal;
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
.qr-modal-input-wrapper {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
gap: 8px;
|
|
5
|
+
width: 100%;
|
|
6
|
+
margin: 24px 0;
|
|
7
|
+
|
|
8
|
+
.utm-inputs{
|
|
9
|
+
display: flex;
|
|
10
|
+
gap: 8px;
|
|
11
|
+
width: 100%;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.qr-code-wrapper {
|
|
16
|
+
display: flex;
|
|
17
|
+
justify-content: center;
|
|
18
|
+
align-items: center;
|
|
19
|
+
border: 0.5px solid #0000003D;
|
|
20
|
+
gap: 8px;
|
|
21
|
+
border-radius: 4px;
|
|
22
|
+
padding: 8px;
|
|
23
|
+
cursor: pointer;
|
|
24
|
+
transition: all 0.3s ease;
|
|
25
|
+
|
|
26
|
+
&:hover{
|
|
27
|
+
background-color: #f5f5f5;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.qr-submit-btn-new {
|
|
31
|
+
padding: 0;
|
|
32
|
+
background-color: transparent;
|
|
33
|
+
color: #000;
|
|
34
|
+
border: none;
|
|
35
|
+
font-weight: 400;
|
|
36
|
+
font-size: 14px;
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
transition: all 0.3s ease;
|
|
39
|
+
&:focus{
|
|
40
|
+
outline: none;
|
|
41
|
+
}
|
|
42
|
+
&:hover{
|
|
43
|
+
background-color: transparent;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|