@meduza/ui-kit-2 0.1.90 → 0.1.92
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/ui-kit-2.cjs.development.js +5 -9
- package/dist/ui-kit-2.cjs.development.js.map +1 -1
- package/dist/ui-kit-2.cjs.production.min.js +1 -1
- package/dist/ui-kit-2.cjs.production.min.js.map +1 -1
- package/dist/ui-kit-2.esm.js +5 -9
- package/dist/ui-kit-2.esm.js.map +1 -1
- package/dist/ui-kit.css +1135 -1134
- package/package.json +1 -1
- package/src/DonatesTeaser/DonatesTeaser.module.css +4 -3
- package/src/DonatesTeaser/index.tsx +7 -7
package/package.json
CHANGED
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
margin: calc(15rem / 16) -20px;
|
|
11
11
|
padding: 42px 20px 50px;
|
|
12
12
|
|
|
13
|
+
transform: translateZ(0);
|
|
13
14
|
text-decoration: none;
|
|
14
15
|
|
|
15
16
|
outline-width: 0;
|
|
16
|
-
background-color: #
|
|
17
|
+
background-color: #f66861;
|
|
17
18
|
|
|
18
19
|
font-family: $secondaryFont;
|
|
19
20
|
|
|
@@ -84,7 +85,7 @@
|
|
|
84
85
|
letter-spacing: 1px;
|
|
85
86
|
text-transform: uppercase;
|
|
86
87
|
|
|
87
|
-
color:
|
|
88
|
+
color: rgba(246, 104, 97, 1);
|
|
88
89
|
|
|
89
90
|
font-size: 11px;
|
|
90
91
|
font-weight: 600;
|
|
@@ -123,7 +124,7 @@
|
|
|
123
124
|
transition: opacity 250ms ease;
|
|
124
125
|
|
|
125
126
|
border-radius: 40px;
|
|
126
|
-
background-color: #
|
|
127
|
+
background-color: #eafe0b;
|
|
127
128
|
|
|
128
129
|
filter: blur(10px);
|
|
129
130
|
}
|
|
@@ -17,15 +17,15 @@ export const DonatesTeaser: React.FC<DonatesTeaserProps> = ({
|
|
|
17
17
|
|
|
18
18
|
const data = {
|
|
19
19
|
ru: {
|
|
20
|
-
title: '
|
|
21
|
-
subtitle:
|
|
22
|
-
|
|
20
|
+
title: 'Слушайте музыку, помогайте «Медузе»',
|
|
21
|
+
// subtitle:
|
|
22
|
+
// '«Медуза» продолжает работать, потому что есть вы',
|
|
23
23
|
button: 'Дать денег',
|
|
24
24
|
href: 'https://support.meduza.io'
|
|
25
25
|
},
|
|
26
26
|
en: {
|
|
27
|
-
title: '
|
|
28
|
-
subtitle: 'We’re only here thanks to you.',
|
|
27
|
+
title: 'Tune in and help Meduza!',
|
|
28
|
+
// subtitle: 'We’re only here thanks to you.',
|
|
29
29
|
button: 'Pledge today',
|
|
30
30
|
href: 'https://support.meduza.io/en'
|
|
31
31
|
}
|
|
@@ -36,11 +36,11 @@ export const DonatesTeaser: React.FC<DonatesTeaserProps> = ({
|
|
|
36
36
|
<div className={styles.main}>
|
|
37
37
|
<h3 className={styles.title}>
|
|
38
38
|
<span dangerouslySetInnerHTML={{ __html: data[lang].title }} />
|
|
39
|
-
{` `}
|
|
39
|
+
{/* {` `}
|
|
40
40
|
<span
|
|
41
41
|
className={styles.text}
|
|
42
42
|
dangerouslySetInnerHTML={{ __html: data[lang].subtitle }}
|
|
43
|
-
/>
|
|
43
|
+
/> */}
|
|
44
44
|
</h3>
|
|
45
45
|
</div>
|
|
46
46
|
|