react-gldn-kit 0.1.15 → 0.1.16
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.js +1 -1
- package/dist/lib/components/Layouts/ModalLayout/index.js +2 -2
- package/dist/lib/components/Layouts/ModalLayout/types.d.ts +1 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/components/LostPasswordEmailForm/index.d.ts +6 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/components/LostPasswordEmailForm/index.js +96 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/components/LostPasswordPhoneForm/index.d.ts +6 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/components/LostPasswordPhoneForm/index.js +74 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/constants.d.ts +5 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/constants.js +14 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/index.d.ts +6 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/index.js +53 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/types.d.ts +4 -0
- package/dist/lib/components/Modals/Alert/components/LostPassword/types.js +8 -0
- package/dist/lib/components/Modals/Alert/components/SetNewPassword/index.d.ts +6 -0
- package/dist/lib/components/Modals/Alert/components/SetNewPassword/index.js +56 -0
- package/dist/lib/components/Modals/Alert/index.js +20 -4
- package/dist/lib/components/Wheel/index.js +4 -4
- package/dist/lib/components/ui/Buttons/BaseButton/index.js +2 -2
- package/dist/lib/components/ui/Docs/index.js +1 -3
- package/dist/lib/components/ui/Footer/index.js +7 -2
- package/dist/lib/components/ui/Footer/types.d.ts +1 -0
- package/dist/lib/components/ui/Inputs/PhoneInput/index.js +1 -1
- package/dist/lib/components/ui/Timer/index.js +1 -1
- package/dist/lib/constants/translates.d.ts +53 -0
- package/dist/lib/constants/translates.js +56 -0
- package/dist/lib/utils/shared.d.ts +2 -0
- package/dist/lib/utils/shared.js +48 -5
- package/dist/main.css +111 -85
- package/package.json +1 -1
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DICTIONARY = void 0;
|
|
4
|
+
exports.DICTIONARY = {
|
|
5
|
+
signIn: {
|
|
6
|
+
title: 'header.login',
|
|
7
|
+
},
|
|
8
|
+
signUp: {
|
|
9
|
+
title: 'header.join',
|
|
10
|
+
},
|
|
11
|
+
credentials: {
|
|
12
|
+
title: 'credentials.title'
|
|
13
|
+
},
|
|
14
|
+
lostPassword: {
|
|
15
|
+
title: 'authorization.lostPasswordBtn'
|
|
16
|
+
},
|
|
17
|
+
setNewPassword: {
|
|
18
|
+
title: 'orofile.content.myAccount.form.setNewPassword'
|
|
19
|
+
},
|
|
20
|
+
languages: {
|
|
21
|
+
title: 'languages'
|
|
22
|
+
},
|
|
23
|
+
casinoProviders: {
|
|
24
|
+
title: 'filterByProviders'
|
|
25
|
+
},
|
|
26
|
+
casinoFavorite: {
|
|
27
|
+
title: 'favorites'
|
|
28
|
+
},
|
|
29
|
+
bonuses: {
|
|
30
|
+
title: 'drawers.casino.bonuses'
|
|
31
|
+
},
|
|
32
|
+
calendar: {
|
|
33
|
+
title: 'calendar'
|
|
34
|
+
},
|
|
35
|
+
referralCopyContent: {
|
|
36
|
+
title: 'referral.shareModal.title'
|
|
37
|
+
},
|
|
38
|
+
referralWithdraw: {
|
|
39
|
+
title: 'referral.withdrawModal.title'
|
|
40
|
+
},
|
|
41
|
+
referralFailure: {
|
|
42
|
+
title: 'referral.failureModal.title'
|
|
43
|
+
},
|
|
44
|
+
referralSuccess: {
|
|
45
|
+
title: 'referral.successModal.title'
|
|
46
|
+
},
|
|
47
|
+
promoCodeActivate: {
|
|
48
|
+
title: 'promoCodePage.promoCodeActivatedTitle'
|
|
49
|
+
},
|
|
50
|
+
cancelBonus: {
|
|
51
|
+
title: 'bonusCabinet.cancelBonus.title'
|
|
52
|
+
},
|
|
53
|
+
claimConfirmation: {
|
|
54
|
+
title: 'bonusCabinet.cancelBonus.title'
|
|
55
|
+
}
|
|
56
|
+
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EModalTypes } from 'zustandStore/alerts/modal/types';
|
|
1
2
|
export declare const getValueByIdFromUrl: (key: string, path: string) => string;
|
|
2
3
|
export declare const sleep: (ms: number) => Promise<unknown>;
|
|
3
4
|
export declare const openExternalLink: (link: string, isNewWindow?: boolean) => void;
|
|
@@ -6,3 +7,4 @@ export declare function setCookie(name: string, value: string, days: number): vo
|
|
|
6
7
|
export declare function getCookie(name: string): string;
|
|
7
8
|
export declare function eraseCookie(name: string): void;
|
|
8
9
|
export declare const copyToClipboard: (text: string) => () => Promise<void>;
|
|
10
|
+
export declare const getModalTitle: (type: EModalTypes) => string;
|
package/dist/lib/utils/shared.js
CHANGED
|
@@ -36,9 +36,11 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
36
36
|
}
|
|
37
37
|
};
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.copyToClipboard = exports.eraseCookie = exports.getCookie = exports.setCookie = exports.setExistingValueToCookie = exports.openExternalLink = exports.sleep = exports.getValueByIdFromUrl = void 0;
|
|
39
|
+
exports.getModalTitle = exports.copyToClipboard = exports.eraseCookie = exports.getCookie = exports.setCookie = exports.setExistingValueToCookie = exports.openExternalLink = exports.sleep = exports.getValueByIdFromUrl = void 0;
|
|
40
|
+
var translates_1 = require("constants/translates");
|
|
41
|
+
var types_1 = require("zustandStore/alerts/modal/types");
|
|
40
42
|
var store_1 = require("zustandStore/alerts/notification/store");
|
|
41
|
-
var
|
|
43
|
+
var types_2 = require("zustandStore/alerts/notification/types");
|
|
42
44
|
var getValueByIdFromUrl = function (key, path) {
|
|
43
45
|
var url = new URL(path);
|
|
44
46
|
var value = url.searchParams.get(key) || '';
|
|
@@ -144,7 +146,7 @@ var copyToClipboard = function (text) { return function () { return __awaiter(vo
|
|
|
144
146
|
store_1.useZustandNotificationKitStore.getState().addNotification({
|
|
145
147
|
uid: "copy_success_e+".concat(new Date().getTime()),
|
|
146
148
|
text: 'copied',
|
|
147
|
-
type:
|
|
149
|
+
type: types_2.ENotificationType.Success,
|
|
148
150
|
});
|
|
149
151
|
return [3 /*break*/, 3];
|
|
150
152
|
case 2:
|
|
@@ -174,14 +176,14 @@ var copyToClipboard = function (text) { return function () { return __awaiter(vo
|
|
|
174
176
|
store_1.useZustandNotificationKitStore.getState().addNotification({
|
|
175
177
|
uid: "copy_success_e+".concat(new Date().getTime()),
|
|
176
178
|
text: 'copied',
|
|
177
|
-
type:
|
|
179
|
+
type: types_2.ENotificationType.Success,
|
|
178
180
|
});
|
|
179
181
|
}
|
|
180
182
|
catch (error) {
|
|
181
183
|
store_1.useZustandNotificationKitStore.getState().addNotification({
|
|
182
184
|
uid: "copy_failure+".concat(new Date().getTime()),
|
|
183
185
|
text: 'errors.copyFailure',
|
|
184
|
-
type:
|
|
186
|
+
type: types_2.ENotificationType.Success,
|
|
185
187
|
});
|
|
186
188
|
}
|
|
187
189
|
return [3 /*break*/, 3];
|
|
@@ -190,3 +192,44 @@ var copyToClipboard = function (text) { return function () { return __awaiter(vo
|
|
|
190
192
|
});
|
|
191
193
|
}); }; };
|
|
192
194
|
exports.copyToClipboard = copyToClipboard;
|
|
195
|
+
var getModalTitle = function (type) {
|
|
196
|
+
switch (type) {
|
|
197
|
+
case types_1.EModalTypes.SignIn:
|
|
198
|
+
return translates_1.DICTIONARY.signIn.title;
|
|
199
|
+
case types_1.EModalTypes.SignUp:
|
|
200
|
+
return translates_1.DICTIONARY.signUp.title;
|
|
201
|
+
case types_1.EModalTypes.Credentials:
|
|
202
|
+
return translates_1.DICTIONARY.credentials.title;
|
|
203
|
+
case types_1.EModalTypes.LostPassword:
|
|
204
|
+
return translates_1.DICTIONARY.lostPassword.title;
|
|
205
|
+
case types_1.EModalTypes.SetNewPassword:
|
|
206
|
+
return translates_1.DICTIONARY.setNewPassword.title;
|
|
207
|
+
case types_1.EModalTypes.Languages:
|
|
208
|
+
return translates_1.DICTIONARY.languages.title;
|
|
209
|
+
case types_1.EModalTypes.CasinoProviders:
|
|
210
|
+
return translates_1.DICTIONARY.casinoProviders.title;
|
|
211
|
+
case types_1.EModalTypes.CasinoFavorite:
|
|
212
|
+
return translates_1.DICTIONARY.casinoFavorite.title;
|
|
213
|
+
case types_1.EModalTypes.Bonuses:
|
|
214
|
+
return translates_1.DICTIONARY.bonuses.title;
|
|
215
|
+
case types_1.EModalTypes.Calendar:
|
|
216
|
+
return translates_1.DICTIONARY.calendar.title;
|
|
217
|
+
case types_1.EModalTypes.ReferralCopyContent:
|
|
218
|
+
return translates_1.DICTIONARY.referralCopyContent.title;
|
|
219
|
+
case types_1.EModalTypes.ReferralWithdraw:
|
|
220
|
+
return translates_1.DICTIONARY.referralWithdraw.title;
|
|
221
|
+
case types_1.EModalTypes.ReferralFailure:
|
|
222
|
+
return translates_1.DICTIONARY.referralFailure.title;
|
|
223
|
+
case types_1.EModalTypes.ReferralSuccess:
|
|
224
|
+
return translates_1.DICTIONARY.referralSuccess.title;
|
|
225
|
+
case types_1.EModalTypes.PromoCodeActivate:
|
|
226
|
+
return translates_1.DICTIONARY.promoCodeActivate.title;
|
|
227
|
+
case types_1.EModalTypes.CancelBonus:
|
|
228
|
+
return translates_1.DICTIONARY.cancelBonus.title;
|
|
229
|
+
case types_1.EModalTypes.ClaimConfirmation:
|
|
230
|
+
return translates_1.DICTIONARY.claimConfirmation.title;
|
|
231
|
+
default:
|
|
232
|
+
return '';
|
|
233
|
+
}
|
|
234
|
+
};
|
|
235
|
+
exports.getModalTitle = getModalTitle;
|
package/dist/main.css
CHANGED
|
@@ -407,6 +407,7 @@
|
|
|
407
407
|
text-decoration: none;
|
|
408
408
|
flex-direction: column;
|
|
409
409
|
position: relative;
|
|
410
|
+
cursor: pointer;
|
|
410
411
|
}
|
|
411
412
|
|
|
412
413
|
.KIT__AppSwitcher-module__text___gS8_9 {
|
|
@@ -1255,7 +1256,7 @@
|
|
|
1255
1256
|
height: 100%;
|
|
1256
1257
|
border-radius: var(--border-s);
|
|
1257
1258
|
border: 2px solid var(--tab-border-bottom-color);
|
|
1258
|
-
background: var(--
|
|
1259
|
+
background: var(--primary-gradient);
|
|
1259
1260
|
}
|
|
1260
1261
|
.KIT__Tabs-module__wrapperTabs___rFoBY::-webkit-scrollbar {
|
|
1261
1262
|
width: 0;
|
|
@@ -1351,12 +1352,6 @@
|
|
|
1351
1352
|
height: 52px;
|
|
1352
1353
|
}
|
|
1353
1354
|
|
|
1354
|
-
@media (min-width: 768px) {
|
|
1355
|
-
.KIT__SignUp-module__wrapperReferralFailure___Nv53h {
|
|
1356
|
-
max-width: 360px;
|
|
1357
|
-
border-radius: var(--border-l);
|
|
1358
|
-
}
|
|
1359
|
-
}
|
|
1360
1355
|
.KIT__EmailSignUp-module__animationFadeIn___OYv3L {
|
|
1361
1356
|
animation: KIT__EmailSignUp-module__FadeIn___jKgXy 1s forwards;
|
|
1362
1357
|
width: 100%;
|
|
@@ -1395,7 +1390,6 @@
|
|
|
1395
1390
|
padding: 2px 10px;
|
|
1396
1391
|
position: relative;
|
|
1397
1392
|
background: var(--input-base-autofill-background-color);
|
|
1398
|
-
margin-bottom: var(--indent-l);
|
|
1399
1393
|
color: white;
|
|
1400
1394
|
}
|
|
1401
1395
|
|
|
@@ -1410,6 +1404,9 @@
|
|
|
1410
1404
|
|
|
1411
1405
|
.KIT__PhoneInput-module__wrapper___xIp3u {
|
|
1412
1406
|
position: relative;
|
|
1407
|
+
display: flex;
|
|
1408
|
+
flex-direction: column;
|
|
1409
|
+
gap: var(--indent-m);
|
|
1413
1410
|
}
|
|
1414
1411
|
|
|
1415
1412
|
.KIT__PhoneInput-module__errorBorder___QOw8R {
|
|
@@ -1626,12 +1623,14 @@
|
|
|
1626
1623
|
max-width: 100%;
|
|
1627
1624
|
width: 100%;
|
|
1628
1625
|
padding: var(--indent-s);
|
|
1626
|
+
overflow-y: auto;
|
|
1629
1627
|
}
|
|
1630
1628
|
@media screen and (min-width: 768px) {
|
|
1631
1629
|
.KIT__ModalContent-module__wrapperModalContent___tXL9n {
|
|
1632
1630
|
max-width: 500px;
|
|
1633
1631
|
}
|
|
1634
1632
|
}
|
|
1633
|
+
|
|
1635
1634
|
.KIT__ModalLayout-module__wrapperModalLayout___A4nBX {
|
|
1636
1635
|
background-color: var(--modal-layout-background-color);
|
|
1637
1636
|
border-radius: var(--border-xl) var(--border-xl) 0 0;
|
|
@@ -1648,14 +1647,6 @@
|
|
|
1648
1647
|
position: relative;
|
|
1649
1648
|
}
|
|
1650
1649
|
|
|
1651
|
-
@media screen and (min-width: 768px) {
|
|
1652
|
-
|
|
1653
|
-
.KIT__ModalLayout-module__wrapperModalLayout___A4nBX {
|
|
1654
|
-
width: auto;
|
|
1655
|
-
width: initial;
|
|
1656
|
-
}
|
|
1657
|
-
}
|
|
1658
|
-
|
|
1659
1650
|
.KIT__ModalLayout-module__header___VvKRR {
|
|
1660
1651
|
height: var(--height-48);
|
|
1661
1652
|
display: flex;
|
|
@@ -2076,20 +2067,6 @@
|
|
|
2076
2067
|
font-weight: 700;
|
|
2077
2068
|
}
|
|
2078
2069
|
|
|
2079
|
-
.KIT__LostPasswordEmailForm-module__formInput___ZhBnH {
|
|
2080
|
-
margin-bottom: 25px;
|
|
2081
|
-
}
|
|
2082
|
-
.KIT__LostPasswordPhoneForm-module__formInput___KlA96 {
|
|
2083
|
-
margin-bottom: var(--indent-base);
|
|
2084
|
-
}
|
|
2085
|
-
|
|
2086
|
-
.KIT__LostPasswordPhoneForm-module__formPhoneWrapper___UkZwK {
|
|
2087
|
-
margin-bottom: 25px;
|
|
2088
|
-
}
|
|
2089
|
-
.KIT__LostPassword-module__tabWrapper___UNsFP {
|
|
2090
|
-
width:var(--large);
|
|
2091
|
-
margin-bottom: var(--indent-base);
|
|
2092
|
-
}
|
|
2093
2070
|
.KIT__Credentials-module__wrapperCredentials___AH3RX {
|
|
2094
2071
|
display: flex;
|
|
2095
2072
|
flex-direction: column;
|
|
@@ -2119,6 +2096,35 @@
|
|
|
2119
2096
|
text-overflow: ellipsis;
|
|
2120
2097
|
}
|
|
2121
2098
|
|
|
2099
|
+
.KIT__LostPasswordEmailForm-module__wrapper___t1b_a {
|
|
2100
|
+
display: flex;
|
|
2101
|
+
flex-direction: column;
|
|
2102
|
+
gap: var(--indent-m);
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
.KIT__LostPasswordEmailForm-module__formInput___NTLA7 {
|
|
2106
|
+
width: var(--full);
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2109
|
+
.KIT__LostPasswordPhoneForm-module__formInput___dTNA5 {
|
|
2110
|
+
margin-bottom: var(--indent-m);
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
.KIT__LostPasswordPhoneForm-module__formPhoneWrapper___z2S8h {
|
|
2114
|
+
margin-bottom: var(--indent-xxl);
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
.KIT__LostPassword-module__tabWrapper___VqdrX {
|
|
2118
|
+
width: var(--full);
|
|
2119
|
+
margin-bottom: var(--indent-m);
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2122
|
+
.KIT__SetNewPassword-module__wrapperNewPassword___r4lMa {
|
|
2123
|
+
display: flex;
|
|
2124
|
+
flex-direction: column;
|
|
2125
|
+
gap: var(--indent-m);
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2122
2128
|
.KIT__Alert-module__wrapperModal___lOle6 {
|
|
2123
2129
|
width: 100%;
|
|
2124
2130
|
height: 100%;
|
|
@@ -2182,7 +2188,6 @@
|
|
|
2182
2188
|
.KIT__Alert-module__wallet___hDe7Q {
|
|
2183
2189
|
display: flex;
|
|
2184
2190
|
justify-content: center;
|
|
2185
|
-
align-items: center;
|
|
2186
2191
|
width: var(--full);
|
|
2187
2192
|
height: var(--full);
|
|
2188
2193
|
}
|
|
@@ -2479,26 +2484,13 @@
|
|
|
2479
2484
|
}
|
|
2480
2485
|
}
|
|
2481
2486
|
|
|
2482
|
-
.KIT__Docs-module__docContent___Yf1m5 {
|
|
2483
|
-
width: 100%;
|
|
2484
|
-
padding: var(--indent-l);
|
|
2485
|
-
}
|
|
2486
|
-
|
|
2487
|
-
.KIT__Docs-module__accordionWrapper___axkDy {
|
|
2488
|
-
width: 100%;
|
|
2489
|
-
margin-bottom: calc(var(--indent-l) / 2);
|
|
2490
|
-
color: var(--docs-accordion-wrapper-color);
|
|
2491
|
-
}
|
|
2492
|
-
|
|
2493
|
-
.KIT__Docs-module__accordionWrapper___axkDy {
|
|
2494
|
-
border-bottom: 1px solid var(--border-color-gray);
|
|
2495
|
-
}
|
|
2496
2487
|
.KIT__Accordion-module__wrapperAccordion____bqbf {
|
|
2497
2488
|
border-radius: var(--border-s);
|
|
2498
2489
|
border: 2px solid var(--border-color-gray);
|
|
2499
2490
|
border-radius: var(--border-s);
|
|
2500
2491
|
padding: var(--indent-xl) var(--indent-xxxl);
|
|
2501
2492
|
color: var(--docs-accordion-wrapper-color);
|
|
2493
|
+
cursor: pointer;
|
|
2502
2494
|
}
|
|
2503
2495
|
|
|
2504
2496
|
.KIT__Accordion-module__paddingB___Iw85_ {
|
|
@@ -2549,8 +2541,24 @@
|
|
|
2549
2541
|
.KIT__Accordion-module__starIcon___qizXK {
|
|
2550
2542
|
margin-left: var(--indent-m);
|
|
2551
2543
|
}
|
|
2544
|
+
.KIT__Docs-module__docContent___Yf1m5 {
|
|
2545
|
+
width: 100%;
|
|
2546
|
+
display: flex;
|
|
2547
|
+
flex-direction: column;
|
|
2548
|
+
gap: calc(var(--indent-l) / 2);
|
|
2549
|
+
}
|
|
2550
|
+
|
|
2551
|
+
.KIT__Docs-module__accordionWrapper___axkDy {
|
|
2552
|
+
width: 100%;
|
|
2553
|
+
color: var(--docs-accordion-wrapper-color);
|
|
2554
|
+
}
|
|
2555
|
+
|
|
2556
|
+
.KIT__Docs-module__accordionWrapper___axkDy {
|
|
2557
|
+
border-bottom: 1px solid var(--border-color-gray);
|
|
2558
|
+
}
|
|
2559
|
+
|
|
2552
2560
|
.KIT__Footer-module__wrapperFooter___cknrK {
|
|
2553
|
-
padding: var(--indent-l)
|
|
2561
|
+
padding: var(--indent-l);
|
|
2554
2562
|
padding-bottom: 60px;
|
|
2555
2563
|
background: var(--footer-background-color);
|
|
2556
2564
|
border-top: 2px solid var(--border-color-gray);
|
|
@@ -2558,6 +2566,7 @@
|
|
|
2558
2566
|
flex-direction: column;
|
|
2559
2567
|
width: 100%;
|
|
2560
2568
|
align-items: center;
|
|
2569
|
+
gap: var(--indent-l);
|
|
2561
2570
|
}
|
|
2562
2571
|
|
|
2563
2572
|
.KIT__Footer-module__logoFooter___oB__R {
|
|
@@ -2565,28 +2574,34 @@
|
|
|
2565
2574
|
width: 150px;
|
|
2566
2575
|
}
|
|
2567
2576
|
|
|
2577
|
+
.KIT__Footer-module__docs___hDLnW {
|
|
2578
|
+
display: flex;
|
|
2579
|
+
flex-direction: column;
|
|
2580
|
+
width: 100%;
|
|
2581
|
+
gap: var(--indent-m);
|
|
2582
|
+
}
|
|
2583
|
+
|
|
2568
2584
|
.KIT__Footer-module__docTitle___VWUWp {
|
|
2569
|
-
font-size:
|
|
2585
|
+
font-size: var(--font-size-m);
|
|
2570
2586
|
width: 100%;
|
|
2571
2587
|
color: var(--footer-doc-title-color);
|
|
2572
|
-
padding: var(--indent-l);
|
|
2573
|
-
padding-bottom: 0;
|
|
2574
2588
|
}
|
|
2575
2589
|
|
|
2576
2590
|
.KIT__Footer-module__content___N3GbI {
|
|
2577
|
-
|
|
2591
|
+
display: flex;
|
|
2592
|
+
flex-direction: column;
|
|
2593
|
+
gap: var(--indent-m);
|
|
2594
|
+
width: 100%;
|
|
2578
2595
|
}
|
|
2579
2596
|
|
|
2580
2597
|
.KIT__Footer-module__firstTextBlock___jIJYC {
|
|
2581
|
-
font-size:
|
|
2598
|
+
font-size: var(--font-size-xs);
|
|
2582
2599
|
color: var(--footer-text-block-color);
|
|
2583
|
-
margin-bottom: var(--indent-l);
|
|
2584
2600
|
}
|
|
2585
2601
|
|
|
2586
2602
|
.KIT__Footer-module__secondText___nk15R {
|
|
2587
|
-
font-size:
|
|
2603
|
+
font-size: var(--font-size-xs);
|
|
2588
2604
|
color: var(--footer-text-block-color);
|
|
2589
|
-
margin-bottom: var(--indent-l);
|
|
2590
2605
|
}
|
|
2591
2606
|
|
|
2592
2607
|
.KIT__Footer-module__license___mhG5E {
|
|
@@ -2594,7 +2609,6 @@
|
|
|
2594
2609
|
padding: var(--indent-l);
|
|
2595
2610
|
background: var(--footer-license-background-color);
|
|
2596
2611
|
border-radius: var(--border-l);
|
|
2597
|
-
margin-bottom: var(--indent-l);
|
|
2598
2612
|
border: 2px solid var(--border-color-gray);
|
|
2599
2613
|
display: flex;
|
|
2600
2614
|
justify-content: center;
|
|
@@ -4520,26 +4534,33 @@
|
|
|
4520
4534
|
--button-full: 100%;
|
|
4521
4535
|
|
|
4522
4536
|
--button-height-xs: var(--small-button-height);
|
|
4523
|
-
--button-height-s: calc(
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
--button-height-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4532
|
-
|
|
4533
|
-
|
|
4534
|
-
|
|
4535
|
-
--
|
|
4536
|
-
|
|
4537
|
-
|
|
4538
|
-
|
|
4539
|
-
|
|
4540
|
-
--primary-
|
|
4541
|
-
|
|
4542
|
-
|
|
4537
|
+
--button-height-s: calc(
|
|
4538
|
+
var(--small-button-height) + var(--button-height-step)
|
|
4539
|
+
);
|
|
4540
|
+
--button-height-m: calc(
|
|
4541
|
+
var(--small-button-height) + var(--button-height-step) * 2
|
|
4542
|
+
);
|
|
4543
|
+
--button-height-l: calc(
|
|
4544
|
+
var(--small-button-height) + var(--button-height-step) * 3
|
|
4545
|
+
);
|
|
4546
|
+
--button-height-xl: calc(
|
|
4547
|
+
var(--small-button-height) + var(--button-height-step) * 4
|
|
4548
|
+
);
|
|
4549
|
+
--button-height-xxl: calc(
|
|
4550
|
+
var(--small-button-height) + var(--button-height-step) * 5
|
|
4551
|
+
);
|
|
4552
|
+
|
|
4553
|
+
--primary-shadow: 0 0px 9px var(--green-100), inset 0 8px 1px rgba(, 0.1);
|
|
4554
|
+
--primary-gradient: linear-gradient(
|
|
4555
|
+
1turn,
|
|
4556
|
+
color-mix(in oklab, var(--green-100) 50%, transparent 50%) 0.8%,
|
|
4557
|
+
var(--green-100)
|
|
4558
|
+
);
|
|
4559
|
+
--primary-secondary: linear-gradient(
|
|
4560
|
+
1turn,
|
|
4561
|
+
rgba(var(--soft-gray), 0.625) 0.8%,
|
|
4562
|
+
rgb(var(--soft-gray))
|
|
4563
|
+
);
|
|
4543
4564
|
|
|
4544
4565
|
/* Buttons */
|
|
4545
4566
|
--button-color-primary: var(--green-300);
|
|
@@ -4548,6 +4569,7 @@
|
|
|
4548
4569
|
--button-color-black: var(--base-700, transparent);
|
|
4549
4570
|
--button-color-black-text: var(--base-0, white);
|
|
4550
4571
|
}
|
|
4572
|
+
|
|
4551
4573
|
:root {
|
|
4552
4574
|
--check-box-height: 32px;
|
|
4553
4575
|
--check-box-slider-padding: 4px;
|
|
@@ -4563,15 +4585,18 @@
|
|
|
4563
4585
|
--background-active-app-switcher-color: var(--border-app-switcher-color);
|
|
4564
4586
|
--active-app-border-color: ;
|
|
4565
4587
|
--app-switcher-svg-path-fill: var(--green-100);
|
|
4566
|
-
--
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4571
|
-
--drawer-button-shadow-background: linear-gradient(
|
|
4572
|
-
|
|
4573
|
-
|
|
4588
|
+
--drawer-button-border-background: linear-gradient(
|
|
4589
|
+
90deg,
|
|
4590
|
+
var(--green-100) 0.8%,
|
|
4591
|
+
transparent
|
|
4592
|
+
);
|
|
4593
|
+
--drawer-button-shadow-background: linear-gradient(
|
|
4594
|
+
90deg,
|
|
4595
|
+
#212433 0%,
|
|
4596
|
+
var(--drawer-modal-content-color) 100%
|
|
4597
|
+
);
|
|
4574
4598
|
}
|
|
4599
|
+
|
|
4575
4600
|
:root {
|
|
4576
4601
|
--promo-code-promo-title-color: rgba(var(--white), 0.5);
|
|
4577
4602
|
}
|
|
@@ -4581,9 +4606,10 @@
|
|
|
4581
4606
|
--tab-text-color: var(--base-0, red);
|
|
4582
4607
|
--tab-indicator-bg: var(--yellow-200, red);
|
|
4583
4608
|
--tab-border-bottom-color: var(--green-100, red);
|
|
4584
|
-
--tab-button-active-shadow:
|
|
4585
|
-
|
|
4609
|
+
--tab-button-active-shadow: 0 0px 9px var(--green-100),
|
|
4610
|
+
inset 0 8px 1px color-mix(in oklab, var(--green-100) 10%, transparent 90%);
|
|
4586
4611
|
}
|
|
4612
|
+
|
|
4587
4613
|
:root {
|
|
4588
4614
|
--sign-up-promo-code-color: color-mix(in oklab, var(--base-0, red) 50%, transparent 50%);
|
|
4589
4615
|
/*Notice: it equals 255,255,255,0.5*/
|