@sikka/hawa 0.0.1 → 0.0.4
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/.github/workflows/hawa-publish-push.yml +45 -0
- package/.github/workflows/hawa-publish.yml +45 -0
- package/.prettierrc +28 -28
- package/README.md +149 -119
- package/es/index.es.js +1 -0
- package/lib/index.js +1 -0
- package/package.json +59 -47
- package/rollup.config.js +30 -40
- package/src/Assets/images/card-background/1.jpeg +0 -0
- package/src/Assets/images/card-background/10.jpeg +0 -0
- package/src/Assets/images/card-background/11.jpeg +0 -0
- package/src/Assets/images/card-background/12.jpeg +0 -0
- package/src/Assets/images/card-background/13.jpeg +0 -0
- package/src/Assets/images/card-background/14.jpeg +0 -0
- package/src/Assets/images/card-background/15.jpeg +0 -0
- package/src/Assets/images/card-background/16.jpeg +0 -0
- package/src/Assets/images/card-background/17.jpeg +0 -0
- package/src/Assets/images/card-background/18.jpeg +0 -0
- package/src/Assets/images/card-background/19.jpeg +0 -0
- package/src/Assets/images/card-background/2.jpeg +0 -0
- package/src/Assets/images/card-background/20.jpeg +0 -0
- package/src/Assets/images/card-background/21.jpeg +0 -0
- package/src/Assets/images/card-background/22.jpeg +0 -0
- package/src/Assets/images/card-background/23.jpeg +0 -0
- package/src/Assets/images/card-background/24.jpeg +0 -0
- package/src/Assets/images/card-background/25.jpeg +0 -0
- package/src/Assets/images/card-background/3.jpeg +0 -0
- package/src/Assets/images/card-background/4.jpeg +0 -0
- package/src/Assets/images/card-background/5.jpeg +0 -0
- package/src/Assets/images/card-background/6.jpeg +0 -0
- package/src/Assets/images/card-background/7.jpeg +0 -0
- package/src/Assets/images/card-background/8.jpeg +0 -0
- package/src/Assets/images/card-background/9.jpeg +0 -0
- package/src/Assets/images/card-type/amex.png +0 -0
- package/src/Assets/images/card-type/diners.png +0 -0
- package/src/Assets/images/card-type/discover.png +0 -0
- package/src/Assets/images/card-type/mastercard.png +0 -0
- package/src/Assets/images/card-type/troy.png +0 -0
- package/src/Assets/images/card-type/unionpay.png +0 -0
- package/src/Assets/images/card-type/visa.png +0 -0
- package/src/blocks/Account/UserProfile.js +15 -0
- package/src/blocks/Account/UserSettings.js +15 -0
- package/src/blocks/Account/index.js +2 -0
- package/src/blocks/AuthForms/NewPasswordForm.js +17 -0
- package/src/blocks/AuthForms/ResetPasswordForm.js +14 -0
- package/src/blocks/AuthForms/SignInForm.js +19 -0
- package/src/blocks/AuthForms/SignUpForm.js +20 -0
- package/src/blocks/AuthForms/index.js +4 -0
- package/src/blocks/AuthForms/viaFacebook.js +0 -0
- package/src/blocks/AuthForms/viaGithub.js +0 -0
- package/src/blocks/AuthForms/viaGoogle.js +0 -0
- package/src/blocks/AuthForms/viaTwitter.js +0 -0
- package/src/blocks/Payment/Form/CForm.js +326 -0
- package/src/blocks/Payment/Form/Card.js +242 -0
- package/src/blocks/Payment/Gateway/GooglePay.js +251 -0
- package/src/blocks/Payment/Gateway/Payfort.js +90 -0
- package/src/blocks/Payment/Gateway/Paypal.js +138 -0
- package/src/blocks/Payment/Gateway/Wallet.js +149 -0
- package/src/blocks/Payment/PaymentMethod.js +132 -0
- package/src/blocks/index.js +13 -0
- package/src/index.js +2 -1
- package/src/layout/Box.js +25 -0
- package/src/layout/index.js +1 -0
- package/src/stories/ActionButton.stories.js +49 -0
- package/src/stories/AdaptiveButton.stories.js +80 -84
- package/src/stories/Alert.stories.js +41 -0
- package/src/stories/AuthForm.stories.js +79 -0
- package/src/stories/Box.stories.js +64 -0
- package/src/stories/CheckBox.stories.js +35 -33
- package/src/stories/GlobalVariables.stories.js +101 -108
- package/src/stories/HawaProvider.stories.js +23 -23
- package/src/stories/InputLabel.stories.js +92 -100
- package/src/stories/Introduction.stories.js +211 -0
- package/src/stories/RadioSelector.stories.js +69 -69
- package/src/stories/TextField.stories.js +50 -59
- package/src/stories/UserAccount.stories.js +46 -0
- package/src/styles.css +400 -403
- package/src/styles.scss +679 -0
- package/src/themes/HawaProvider.js +45 -0
- package/src/ui/ActionButton.js +15 -0
- package/src/{components/Hawa/AdaptiveButton/AdaptiveButton.jsx → ui/AdaptiveButton.js} +252 -261
- package/src/{components/Hawa/AutoCompleteField/AutoCompleteField.jsx → ui/AutoCompleteField.js} +33 -33
- package/src/{components/Hawa/Checkbox/Checkbox.jsx → ui/Checkbox.js} +21 -20
- package/src/{components/Hawa/DragDropImages/DragDropImages.jsx → ui/DragDropImages.js} +180 -180
- package/src/{components/Hawa/Hawa.jsx → ui/Hawa.js} +3 -3
- package/src/{components/Hawa/RadioBox/RadioBox.jsx → ui/RadioBox.js} +29 -29
- package/src/{components/Hawa/RadioSelector/RadioSelector.jsx → ui/RadioSelector.js} +51 -51
- package/src/ui/Row.js +21 -0
- package/src/{components/Hawa/SelectedField/SelectedField.jsx → ui/SelectedField.js} +46 -46
- package/src/ui/StyledAlert.js +30 -0
- package/src/ui/StyledInputLabel.js +19 -0
- package/src/ui/StyledTooltip.js +46 -0
- package/src/{components/Hawa/TabPanel/TabPanel.jsx → ui/TabPanel.js} +37 -38
- package/src/{components/Hawa/TextArea/TextArea.jsx → ui/TextArea.js} +38 -39
- package/src/ui/TextField.js +62 -0
- package/src/{components/Hawa → ui}/index.js +13 -11
- package/src/util.js +20 -0
- package/storybook-static/0.d3bc3395610cf5d3ee94.manager.bundle.js +1 -0
- package/storybook-static/0.dd3d47f5.iframe.bundle.js +1 -0
- package/storybook-static/1.4e43f671.iframe.bundle.js +3 -0
- package/storybook-static/{4.f6eb74f4.iframe.bundle.js.LICENSE.txt → 1.4e43f671.iframe.bundle.js.LICENSE.txt} +8 -8
- package/storybook-static/1.4e43f671.iframe.bundle.js.map +1 -0
- package/storybook-static/2.9a757207.iframe.bundle.js +1 -0
- package/storybook-static/3.c1dc7159.iframe.bundle.js +1 -0
- package/storybook-static/4.8c311a6b48cad9f29317.manager.bundle.js +2 -0
- package/storybook-static/{5.fa71488e730c5c7f885f.manager.bundle.js.LICENSE.txt → 4.8c311a6b48cad9f29317.manager.bundle.js.LICENSE.txt} +8 -8
- package/storybook-static/5.88fe62ee92ff5ca67829.manager.bundle.js +1 -0
- package/storybook-static/6.96d184f368dea006cb52.manager.bundle.js +2 -0
- package/storybook-static/{11.49c687eaa6261f8b7be2.manager.bundle.js.LICENSE.txt → 6.96d184f368dea006cb52.manager.bundle.js.LICENSE.txt} +12 -12
- package/storybook-static/{7.a806a38f.iframe.bundle.js → 7.5ec31f3702b08ab0b71c.manager.bundle.js} +1 -1
- package/storybook-static/7.69d2e532.iframe.bundle.js +1 -0
- package/storybook-static/8.5ce13be7612bd3a6b864.manager.bundle.js +1 -0
- package/storybook-static/8.68cd1217.iframe.bundle.js +3 -0
- package/storybook-static/{6.fbc7b90b.iframe.bundle.js.LICENSE.txt → 8.68cd1217.iframe.bundle.js.LICENSE.txt} +12 -12
- package/storybook-static/8.68cd1217.iframe.bundle.js.map +1 -0
- package/storybook-static/9.488e3969.iframe.bundle.js +1 -0
- package/storybook-static/iframe.html +348 -138
- package/storybook-static/index.html +59 -47
- package/storybook-static/main.65cb2769.iframe.bundle.js +1 -0
- package/storybook-static/main.7e391cf7bf72b0d18ea5.manager.bundle.js +1 -0
- package/storybook-static/runtime~main.6e2e1544.iframe.bundle.js +1 -0
- package/storybook-static/runtime~main.cc29f4c2175f187a3707.manager.bundle.js +1 -0
- package/storybook-static/vendors~main.d144d840.iframe.bundle.js +3 -0
- package/storybook-static/{vendors~main.73411ca9.iframe.bundle.js.LICENSE.txt → vendors~main.d144d840.iframe.bundle.js.LICENSE.txt} +148 -148
- package/storybook-static/vendors~main.d144d840.iframe.bundle.js.map +1 -0
- package/storybook-static/vendors~main.f228d62e92b69563cefb.manager.bundle.js +2 -0
- package/storybook-static/{vendors~main.d3455eed64b243c89325.manager.bundle.js.LICENSE.txt → vendors~main.f228d62e92b69563cefb.manager.bundle.js.LICENSE.txt} +104 -88
- package/tools/build-styles.js +17 -0
- package/yarn-error.log +10910 -0
- package/src/components/Hawa/AdaptiveButton/index.js +0 -1
- package/src/components/Hawa/AutoCompleteField/index.js +0 -1
- package/src/components/Hawa/Checkbox/index.js +0 -1
- package/src/components/Hawa/DragDropImages/index.js +0 -1
- package/src/components/Hawa/HawaProvider/HawaProvider.js +0 -19
- package/src/components/Hawa/HawaProvider/index.js +0 -1
- package/src/components/Hawa/InputLabel/StyledInputLabel.jsx +0 -36
- package/src/components/Hawa/InputLabel/index.js +0 -1
- package/src/components/Hawa/RadioBox/index.js +0 -1
- package/src/components/Hawa/RadioSelector/index.js +0 -1
- package/src/components/Hawa/Row/Row.jsx +0 -23
- package/src/components/Hawa/Row/index.js +0 -1
- package/src/components/Hawa/SelectedField/index.js +0 -1
- package/src/components/Hawa/TabPanel/index.js +0 -1
- package/src/components/Hawa/TextArea/index.js +0 -1
- package/src/components/Hawa/TextField/TextField.jsx +0 -41
- package/src/components/Hawa/TextField/index.js +0 -1
- package/storybook-static/0.86a7edfd.iframe.bundle.js +0 -1
- package/storybook-static/0.b73eaee9a88f178d62ed.manager.bundle.js +0 -1
- package/storybook-static/1.f296d183a17268696d73.manager.bundle.js +0 -1
- package/storybook-static/10.9998ba67d65d81d20896.manager.bundle.js +0 -1
- package/storybook-static/11.49c687eaa6261f8b7be2.manager.bundle.js +0 -2
- package/storybook-static/12.c9538ed3766c96f289e7.manager.bundle.js +0 -1
- package/storybook-static/4.f6eb74f4.iframe.bundle.js +0 -3
- package/storybook-static/4.f6eb74f4.iframe.bundle.js.map +0 -1
- package/storybook-static/5.ec6f37af.iframe.bundle.js +0 -1
- package/storybook-static/5.fa71488e730c5c7f885f.manager.bundle.js +0 -2
- package/storybook-static/6.8096ae4aadde0743697b.manager.bundle.js +0 -1
- package/storybook-static/6.fbc7b90b.iframe.bundle.js +0 -3
- package/storybook-static/6.fbc7b90b.iframe.bundle.js.map +0 -1
- package/storybook-static/7.b34baecbd082bc7b188d.manager.bundle.js +0 -1
- package/storybook-static/8.15577edffecf900a8de2.manager.bundle.js +0 -1
- package/storybook-static/9.d7d85aa0a49a98f17218.manager.bundle.js +0 -1
- package/storybook-static/main.355ffc59.iframe.bundle.js +0 -1
- package/storybook-static/main.ce406c7e93b98325390e.manager.bundle.js +0 -1
- package/storybook-static/runtime~main.3d81579b.iframe.bundle.js +0 -1
- package/storybook-static/runtime~main.909d038f912f063e8837.manager.bundle.js +0 -1
- package/storybook-static/vendors~main.73411ca9.iframe.bundle.js +0 -3
- package/storybook-static/vendors~main.73411ca9.iframe.bundle.js.map +0 -1
- package/storybook-static/vendors~main.d3455eed64b243c89325.manager.bundle.js +0 -2
package/src/styles.css
CHANGED
|
@@ -1,403 +1,400 @@
|
|
|
1
|
-
.reset_password_root {
|
|
2
|
-
display: flex;
|
|
3
|
-
flex-direction: column;
|
|
4
|
-
justify-content: center;
|
|
5
|
-
align-items: center;
|
|
6
|
-
flex-grow: 1;
|
|
7
|
-
background-color: var(--light);
|
|
8
|
-
}
|
|
9
|
-
.reset_password_paper {
|
|
10
|
-
margin-top: 8px;
|
|
11
|
-
display: flex;
|
|
12
|
-
flex-direction: column;
|
|
13
|
-
align-items: center;
|
|
14
|
-
}
|
|
15
|
-
/* START INDEX.JS */
|
|
16
|
-
.index_root {
|
|
17
|
-
height: 100vh;
|
|
18
|
-
display: flex;
|
|
19
|
-
flex-direction: column;
|
|
20
|
-
justify-content: center;
|
|
21
|
-
align-items: center;
|
|
22
|
-
}
|
|
23
|
-
.index_logo {
|
|
24
|
-
height: 70px;
|
|
25
|
-
display: flex;
|
|
26
|
-
flex-direction: column;
|
|
27
|
-
justify-content: center;
|
|
28
|
-
align-items: center;
|
|
29
|
-
}
|
|
30
|
-
.index_buttons_container {
|
|
31
|
-
margin-top: 20px;
|
|
32
|
-
display: flex;
|
|
33
|
-
flex-direction: column;
|
|
34
|
-
justify-content: center;
|
|
35
|
-
align-items: center;
|
|
36
|
-
}
|
|
37
|
-
/* END INDEX.js */
|
|
38
|
-
.account_section {
|
|
39
|
-
display: flex;
|
|
40
|
-
flex-direction: column;
|
|
41
|
-
align-items: center;
|
|
42
|
-
margin: 10px;
|
|
43
|
-
/* max-width: 400px; */
|
|
44
|
-
/* background-color: black; */
|
|
45
|
-
}
|
|
46
|
-
.account_deactivate {
|
|
47
|
-
text-align: center;
|
|
48
|
-
opacity: 1;
|
|
49
|
-
font-size: 13px;
|
|
50
|
-
color: red;
|
|
51
|
-
padding: 5px;
|
|
52
|
-
cursor: pointer;
|
|
53
|
-
width: fit-content;
|
|
54
|
-
}
|
|
55
|
-
.text_button {
|
|
56
|
-
cursor: pointer;
|
|
57
|
-
color: var(--blue);
|
|
58
|
-
font-weight: 500;
|
|
59
|
-
}
|
|
60
|
-
.bottom_text {
|
|
61
|
-
margin-top: 10px;
|
|
62
|
-
font-size: 14px;
|
|
63
|
-
}
|
|
64
|
-
.newsletter_container {
|
|
65
|
-
display: flex;
|
|
66
|
-
align-items: center;
|
|
67
|
-
justify-content: flex-start;
|
|
68
|
-
flex-direction: row;
|
|
69
|
-
margin-top: 15px;
|
|
70
|
-
}
|
|
71
|
-
.modalTEST {
|
|
72
|
-
background-color: red;
|
|
73
|
-
width: 10px;
|
|
74
|
-
}
|
|
75
|
-
.modal_theme {
|
|
76
|
-
background-color: black;
|
|
77
|
-
opacity: 0.3;
|
|
78
|
-
border: none;
|
|
79
|
-
}
|
|
80
|
-
.user_form {
|
|
81
|
-
background-color: var(--lightGrey);
|
|
82
|
-
padding: 20px;
|
|
83
|
-
border-radius: var(--borderR);
|
|
84
|
-
margin-bottom: 20px;
|
|
85
|
-
margin-top: 10px;
|
|
86
|
-
}
|
|
87
|
-
.user_form_container {
|
|
88
|
-
display: flex;
|
|
89
|
-
flex-direction: column;
|
|
90
|
-
justify-content: center;
|
|
91
|
-
width: 90%;
|
|
92
|
-
max-width: 400px;
|
|
93
|
-
height: 100vh;
|
|
94
|
-
}
|
|
95
|
-
.input {
|
|
96
|
-
color: black;
|
|
97
|
-
background-color: var(--light);
|
|
98
|
-
/* padding: 10px; */
|
|
99
|
-
border-radius: var(--borderR);
|
|
100
|
-
border-bottom: none;
|
|
101
|
-
border: none;
|
|
102
|
-
}
|
|
103
|
-
.balanceInput {
|
|
104
|
-
color: black;
|
|
105
|
-
background-color: var(--light);
|
|
106
|
-
padding: 10px;
|
|
107
|
-
border-radius: var(--borderR);
|
|
108
|
-
border-bottom: none;
|
|
109
|
-
border: none;
|
|
110
|
-
}
|
|
111
|
-
.theme_form_input {
|
|
112
|
-
color: black;
|
|
113
|
-
background-color: var(--light);
|
|
114
|
-
border-radius: var(--borderR);
|
|
115
|
-
border-bottom: none;
|
|
116
|
-
border: none;
|
|
117
|
-
width: 100%;
|
|
118
|
-
}
|
|
119
|
-
.theme_input {
|
|
120
|
-
color: black;
|
|
121
|
-
background-color: var(--light);
|
|
122
|
-
padding: 10px;
|
|
123
|
-
border-radius: var(--borderR);
|
|
124
|
-
border-bottom: none;
|
|
125
|
-
border: none;
|
|
126
|
-
width: 100%;
|
|
127
|
-
}
|
|
128
|
-
.theme_input2 {
|
|
129
|
-
color: black;
|
|
130
|
-
background-color: var(--light);
|
|
131
|
-
/* padding: 10px; */
|
|
132
|
-
border-radius: var(--borderR);
|
|
133
|
-
border-bottom: none;
|
|
134
|
-
border: none;
|
|
135
|
-
width: 100%;
|
|
136
|
-
}
|
|
137
|
-
.theme_input2 input {
|
|
138
|
-
color: black;
|
|
139
|
-
background-color: var(--light);
|
|
140
|
-
padding: 10px;
|
|
141
|
-
border-radius: var(--borderR);
|
|
142
|
-
border-bottom: none;
|
|
143
|
-
border: none;
|
|
144
|
-
width: 100%;
|
|
145
|
-
}
|
|
146
|
-
.theme_form_input input {
|
|
147
|
-
color: black;
|
|
148
|
-
background-color: var(--light);
|
|
149
|
-
padding: 10px;
|
|
150
|
-
border-radius: var(--borderR);
|
|
151
|
-
border-bottom: none;
|
|
152
|
-
border: none;
|
|
153
|
-
width: 100%;
|
|
154
|
-
}
|
|
155
|
-
.form_textarea {
|
|
156
|
-
color: black;
|
|
157
|
-
background-color: var(--light);
|
|
158
|
-
border-radius: var(--borderR);
|
|
159
|
-
border-bottom: none;
|
|
160
|
-
border: none;
|
|
161
|
-
width: 100%;
|
|
162
|
-
padding: 0px;
|
|
163
|
-
margin: 0px;
|
|
164
|
-
margin-bottom: 0px;
|
|
165
|
-
resize: vertical;
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
color:
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
margin: 10px;
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
border-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
flex-wrap: wrap;
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
}
|
|
389
|
-
.
|
|
390
|
-
width: 100%;
|
|
391
|
-
}
|
|
392
|
-
.
|
|
393
|
-
width: 100%;
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
margin-top: 10px;
|
|
402
|
-
}
|
|
403
|
-
}
|
|
1
|
+
.reset_password_root {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
align-items: center;
|
|
6
|
+
flex-grow: 1;
|
|
7
|
+
background-color: var(--light);
|
|
8
|
+
}
|
|
9
|
+
.reset_password_paper {
|
|
10
|
+
margin-top: 8px;
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
align-items: center;
|
|
14
|
+
}
|
|
15
|
+
/* START INDEX.JS */
|
|
16
|
+
.index_root {
|
|
17
|
+
height: 100vh;
|
|
18
|
+
display: flex;
|
|
19
|
+
flex-direction: column;
|
|
20
|
+
justify-content: center;
|
|
21
|
+
align-items: center;
|
|
22
|
+
}
|
|
23
|
+
.index_logo {
|
|
24
|
+
height: 70px;
|
|
25
|
+
display: flex;
|
|
26
|
+
flex-direction: column;
|
|
27
|
+
justify-content: center;
|
|
28
|
+
align-items: center;
|
|
29
|
+
}
|
|
30
|
+
.index_buttons_container {
|
|
31
|
+
margin-top: 20px;
|
|
32
|
+
display: flex;
|
|
33
|
+
flex-direction: column;
|
|
34
|
+
justify-content: center;
|
|
35
|
+
align-items: center;
|
|
36
|
+
}
|
|
37
|
+
/* END INDEX.js */
|
|
38
|
+
.account_section {
|
|
39
|
+
display: flex;
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
align-items: center;
|
|
42
|
+
margin: 10px;
|
|
43
|
+
/* max-width: 400px; */
|
|
44
|
+
/* background-color: black; */
|
|
45
|
+
}
|
|
46
|
+
.account_deactivate {
|
|
47
|
+
text-align: center;
|
|
48
|
+
opacity: 1;
|
|
49
|
+
font-size: 13px;
|
|
50
|
+
color: red;
|
|
51
|
+
padding: 5px;
|
|
52
|
+
cursor: pointer;
|
|
53
|
+
width: fit-content;
|
|
54
|
+
}
|
|
55
|
+
.text_button {
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
color: var(--blue);
|
|
58
|
+
font-weight: 500;
|
|
59
|
+
}
|
|
60
|
+
.bottom_text {
|
|
61
|
+
margin-top: 10px;
|
|
62
|
+
font-size: 14px;
|
|
63
|
+
}
|
|
64
|
+
.newsletter_container {
|
|
65
|
+
display: flex;
|
|
66
|
+
align-items: center;
|
|
67
|
+
justify-content: flex-start;
|
|
68
|
+
flex-direction: row;
|
|
69
|
+
margin-top: 15px;
|
|
70
|
+
}
|
|
71
|
+
.modalTEST {
|
|
72
|
+
background-color: red;
|
|
73
|
+
width: 10px;
|
|
74
|
+
}
|
|
75
|
+
.modal_theme {
|
|
76
|
+
background-color: black;
|
|
77
|
+
opacity: 0.3;
|
|
78
|
+
border: none;
|
|
79
|
+
}
|
|
80
|
+
.user_form {
|
|
81
|
+
background-color: var(--lightGrey);
|
|
82
|
+
padding: 20px;
|
|
83
|
+
border-radius: var(--borderR);
|
|
84
|
+
margin-bottom: 20px;
|
|
85
|
+
margin-top: 10px;
|
|
86
|
+
}
|
|
87
|
+
.user_form_container {
|
|
88
|
+
display: flex;
|
|
89
|
+
flex-direction: column;
|
|
90
|
+
justify-content: center;
|
|
91
|
+
width: 90%;
|
|
92
|
+
max-width: 400px;
|
|
93
|
+
height: 100vh;
|
|
94
|
+
}
|
|
95
|
+
.input {
|
|
96
|
+
color: black;
|
|
97
|
+
background-color: var(--light);
|
|
98
|
+
/* padding: 10px; */
|
|
99
|
+
border-radius: var(--borderR);
|
|
100
|
+
border-bottom: none;
|
|
101
|
+
border: none;
|
|
102
|
+
}
|
|
103
|
+
.balanceInput {
|
|
104
|
+
color: black;
|
|
105
|
+
background-color: var(--light);
|
|
106
|
+
padding: 10px;
|
|
107
|
+
border-radius: var(--borderR);
|
|
108
|
+
border-bottom: none;
|
|
109
|
+
border: none;
|
|
110
|
+
}
|
|
111
|
+
.theme_form_input {
|
|
112
|
+
color: black;
|
|
113
|
+
background-color: var(--light);
|
|
114
|
+
border-radius: var(--borderR);
|
|
115
|
+
border-bottom: none;
|
|
116
|
+
border: none;
|
|
117
|
+
width: 100%;
|
|
118
|
+
}
|
|
119
|
+
.theme_input {
|
|
120
|
+
color: black;
|
|
121
|
+
background-color: var(--light);
|
|
122
|
+
padding: 10px;
|
|
123
|
+
border-radius: var(--borderR);
|
|
124
|
+
border-bottom: none;
|
|
125
|
+
border: none;
|
|
126
|
+
width: 100%;
|
|
127
|
+
}
|
|
128
|
+
.theme_input2 {
|
|
129
|
+
color: black;
|
|
130
|
+
background-color: var(--light);
|
|
131
|
+
/* padding: 10px; */
|
|
132
|
+
border-radius: var(--borderR);
|
|
133
|
+
border-bottom: none;
|
|
134
|
+
border: none;
|
|
135
|
+
width: 100%;
|
|
136
|
+
}
|
|
137
|
+
.theme_input2 input {
|
|
138
|
+
color: black;
|
|
139
|
+
background-color: var(--light);
|
|
140
|
+
padding: 10px;
|
|
141
|
+
border-radius: var(--borderR);
|
|
142
|
+
border-bottom: none;
|
|
143
|
+
border: none;
|
|
144
|
+
width: 100%;
|
|
145
|
+
}
|
|
146
|
+
.theme_form_input input {
|
|
147
|
+
color: black;
|
|
148
|
+
background-color: var(--light);
|
|
149
|
+
padding: 10px;
|
|
150
|
+
border-radius: var(--borderR);
|
|
151
|
+
border-bottom: none;
|
|
152
|
+
border: none;
|
|
153
|
+
width: 100%;
|
|
154
|
+
}
|
|
155
|
+
.form_textarea {
|
|
156
|
+
color: black;
|
|
157
|
+
background-color: var(--light);
|
|
158
|
+
border-radius: var(--borderR);
|
|
159
|
+
border-bottom: none;
|
|
160
|
+
border: none;
|
|
161
|
+
width: 100%;
|
|
162
|
+
padding: 0px;
|
|
163
|
+
margin: 0px;
|
|
164
|
+
margin-bottom: 0px;
|
|
165
|
+
resize: vertical;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.input_label {
|
|
169
|
+
font-size: 15px;
|
|
170
|
+
font-weight: 500;
|
|
171
|
+
position: relative;
|
|
172
|
+
/* margin-top: 10px; */
|
|
173
|
+
margin: 15px;
|
|
174
|
+
margin-left: 0px;
|
|
175
|
+
}
|
|
176
|
+
.loading_overlay {
|
|
177
|
+
position: absolute;
|
|
178
|
+
display: grid;
|
|
179
|
+
place-items: center;
|
|
180
|
+
height: 100%;
|
|
181
|
+
width: 100%;
|
|
182
|
+
z-index: 2;
|
|
183
|
+
padding: 0;
|
|
184
|
+
margin: 0px;
|
|
185
|
+
}
|
|
186
|
+
.inputLabel {
|
|
187
|
+
font-size: 20px;
|
|
188
|
+
margin-bottom: 10px;
|
|
189
|
+
font-weight: 500;
|
|
190
|
+
|
|
191
|
+
position: relative;
|
|
192
|
+
}
|
|
193
|
+
.navbar_root_container {
|
|
194
|
+
/* flex-grow: 1; */
|
|
195
|
+
padding-right: 10px;
|
|
196
|
+
padding-left: 10px;
|
|
197
|
+
width: 100%;
|
|
198
|
+
background-color: blue;
|
|
199
|
+
}
|
|
200
|
+
.navbar_container {
|
|
201
|
+
display: flex;
|
|
202
|
+
flex-direction: row;
|
|
203
|
+
justify-content: space-between;
|
|
204
|
+
align-items: center;
|
|
205
|
+
padding-right: 10px;
|
|
206
|
+
padding-left: 10px;
|
|
207
|
+
/* background-color: white; */
|
|
208
|
+
}
|
|
209
|
+
.navbar_logo {
|
|
210
|
+
display: flex;
|
|
211
|
+
justify-content: flex-start;
|
|
212
|
+
align-items: center;
|
|
213
|
+
height: 70px;
|
|
214
|
+
cursor: pointer;
|
|
215
|
+
padding: 0px;
|
|
216
|
+
}
|
|
217
|
+
.navbar_button {
|
|
218
|
+
color: black;
|
|
219
|
+
background-color: var(--light);
|
|
220
|
+
box-shadow: none;
|
|
221
|
+
/* border: 1px solid var(--blue); */
|
|
222
|
+
}
|
|
223
|
+
.navbar_button_primary {
|
|
224
|
+
color: var(--light);
|
|
225
|
+
background-color: var(--blue);
|
|
226
|
+
box-shadow: none;
|
|
227
|
+
}
|
|
228
|
+
.error_page {
|
|
229
|
+
/* background-color: green; */
|
|
230
|
+
display: flex;
|
|
231
|
+
flex-direction: column;
|
|
232
|
+
justify-content: center;
|
|
233
|
+
align-items: center;
|
|
234
|
+
text-align: center;
|
|
235
|
+
height: 100vh;
|
|
236
|
+
}
|
|
237
|
+
.error_page_text_main {
|
|
238
|
+
/* background-color: darkgoldenrod; */
|
|
239
|
+
padding: 10px;
|
|
240
|
+
font-size: 30px;
|
|
241
|
+
font-weight: 500;
|
|
242
|
+
}
|
|
243
|
+
.error_page_text_second {
|
|
244
|
+
/* background-color: darkorchid; */
|
|
245
|
+
padding: 10px;
|
|
246
|
+
}
|
|
247
|
+
.radio_selector_container {
|
|
248
|
+
background-color: white;
|
|
249
|
+
display: flex;
|
|
250
|
+
flex-direction: row;
|
|
251
|
+
border-radius: var(--borderR);
|
|
252
|
+
margin-bottom: 10px;
|
|
253
|
+
}
|
|
254
|
+
.radio_option {
|
|
255
|
+
background-color: var(--lightGrey);
|
|
256
|
+
border-radius: var(--borderR);
|
|
257
|
+
margin: 5px;
|
|
258
|
+
padding: 10px;
|
|
259
|
+
width: 100%;
|
|
260
|
+
justify-content: center;
|
|
261
|
+
align-items: center;
|
|
262
|
+
text-align: center;
|
|
263
|
+
font-size: 14px;
|
|
264
|
+
cursor: pointer;
|
|
265
|
+
white-space: nowrap;
|
|
266
|
+
}
|
|
267
|
+
.settings_row {
|
|
268
|
+
background-color: var(--light);
|
|
269
|
+
border-radius: var(--borderR);
|
|
270
|
+
display: flex;
|
|
271
|
+
flex-direction: row;
|
|
272
|
+
justify-content: space-between;
|
|
273
|
+
align-items: center;
|
|
274
|
+
height: 50px;
|
|
275
|
+
padding: 10px;
|
|
276
|
+
width: 100%;
|
|
277
|
+
}
|
|
278
|
+
.settings_row_actions {
|
|
279
|
+
background-color: rgb(223, 221, 221);
|
|
280
|
+
width: 100%;
|
|
281
|
+
max-width: 200px;
|
|
282
|
+
border-radius: var(--borderR);
|
|
283
|
+
}
|
|
284
|
+
.white_button {
|
|
285
|
+
background-color: rgb(223, 221, 221);
|
|
286
|
+
padding: 10px;
|
|
287
|
+
/* margin: 10px; */
|
|
288
|
+
width: 100px;
|
|
289
|
+
text-align: center;
|
|
290
|
+
cursor: pointer;
|
|
291
|
+
border-radius: var(--borderR);
|
|
292
|
+
/* border-radius: 0 var(--borderR) var(--borderR) 0; */
|
|
293
|
+
}
|
|
294
|
+
.blue_button {
|
|
295
|
+
background-color: var(--blue);
|
|
296
|
+
color: white;
|
|
297
|
+
padding: 10px;
|
|
298
|
+
/* margin: 10px; */
|
|
299
|
+
width: 100px;
|
|
300
|
+
text-align: center;
|
|
301
|
+
cursor: pointer;
|
|
302
|
+
border-radius: var(--borderR);
|
|
303
|
+
/* border-radius: var(--borderR) 0 0 var(--borderR); */
|
|
304
|
+
}
|
|
305
|
+
.route_loading {
|
|
306
|
+
position: fixed;
|
|
307
|
+
bottom: 20px;
|
|
308
|
+
right: 20px;
|
|
309
|
+
background-color: var(--blue);
|
|
310
|
+
border-radius: var(--borderR);
|
|
311
|
+
padding: 10px;
|
|
312
|
+
height: 50px;
|
|
313
|
+
width: 50px;
|
|
314
|
+
display: flex;
|
|
315
|
+
justify-content: center;
|
|
316
|
+
align-items: center;
|
|
317
|
+
z-index: 400;
|
|
318
|
+
}
|
|
319
|
+
.offline_banner {
|
|
320
|
+
position: fixed;
|
|
321
|
+
bottom: 20px;
|
|
322
|
+
left: 20px;
|
|
323
|
+
/* background-color: var(--red); */
|
|
324
|
+
background-color: red;
|
|
325
|
+
border-radius: var(--borderR);
|
|
326
|
+
padding: 10px;
|
|
327
|
+
height: 50px;
|
|
328
|
+
/* width: 50px; */
|
|
329
|
+
display: flex;
|
|
330
|
+
justify-content: center;
|
|
331
|
+
align-items: center;
|
|
332
|
+
z-index: 400;
|
|
333
|
+
color: white;
|
|
334
|
+
}
|
|
335
|
+
.language_modal_button {
|
|
336
|
+
background-color: var(--blue);
|
|
337
|
+
padding: 10px;
|
|
338
|
+
height: 100%;
|
|
339
|
+
width: 100%;
|
|
340
|
+
border-radius: var(--borderR);
|
|
341
|
+
text-align: center;
|
|
342
|
+
color: white;
|
|
343
|
+
margin: 10px;
|
|
344
|
+
}
|
|
345
|
+
.language_modal_buttons_container {
|
|
346
|
+
margin: 10px;
|
|
347
|
+
display: flex;
|
|
348
|
+
flex-direction: row;
|
|
349
|
+
justify-content: space-between;
|
|
350
|
+
}
|
|
351
|
+
.language_modal_root {
|
|
352
|
+
display: flex;
|
|
353
|
+
flex-direction: row;
|
|
354
|
+
justify-content: space-between;
|
|
355
|
+
padding: 20px;
|
|
356
|
+
font-size: 20px;
|
|
357
|
+
font-weight: 700px;
|
|
358
|
+
width: 100%;
|
|
359
|
+
}
|
|
360
|
+
/* DragDropMenuLogo */
|
|
361
|
+
.upload_error_container {
|
|
362
|
+
background-color: #f44336;
|
|
363
|
+
color: white;
|
|
364
|
+
border-radius: var(--borderR);
|
|
365
|
+
padding: 10px;
|
|
366
|
+
margin: 5px;
|
|
367
|
+
font-size: 13px;
|
|
368
|
+
}
|
|
369
|
+
.upload_main_container {
|
|
370
|
+
display: flex;
|
|
371
|
+
border-color: var(--blue);
|
|
372
|
+
border-style: solid;
|
|
373
|
+
border-radius: var(--borderR);
|
|
374
|
+
border-width: 2px;
|
|
375
|
+
cursor: pointer;
|
|
376
|
+
}
|
|
377
|
+
@media (max-width: 600px) {
|
|
378
|
+
.radio_selector_container {
|
|
379
|
+
width: 100%;
|
|
380
|
+
flex-wrap: wrap;
|
|
381
|
+
}
|
|
382
|
+
.settings_row {
|
|
383
|
+
flex-wrap: wrap;
|
|
384
|
+
height: auto;
|
|
385
|
+
}
|
|
386
|
+
.white_button {
|
|
387
|
+
width: 100%;
|
|
388
|
+
}
|
|
389
|
+
.blue_button {
|
|
390
|
+
width: 100%;
|
|
391
|
+
}
|
|
392
|
+
.settings_row_actions {
|
|
393
|
+
width: 100%;
|
|
394
|
+
max-width: 100%;
|
|
395
|
+
}
|
|
396
|
+
.settings_row_title {
|
|
397
|
+
margin-bottom: 10px;
|
|
398
|
+
margin-top: 10px;
|
|
399
|
+
}
|
|
400
|
+
}
|