@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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.90",
2
+ "version": "0.1.92",
3
3
  "license": "MIT",
4
4
  "description": "UIKit for Meduza",
5
5
  "repository": "https://github.com/meduza-corp/ui-kit-2.git",
@@ -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: #000;
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: #ffffff;
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: #ff1113;
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: 'Вы&nbsp;совершили чудо ',
21
- subtitle:
22
- '&laquo;Медуза&raquo; продолжает работать, потому что есть&nbsp;вы',
20
+ title: 'Слушайте музыку, помогайте «Медузе»',
21
+ // subtitle:
22
+ // '&laquo;Медуза&raquo; продолжает работать, потому что есть&nbsp;вы',
23
23
  button: 'Дать денег',
24
24
  href: 'https://support.meduza.io'
25
25
  },
26
26
  en: {
27
- title: 'Meduza is you.<br/>',
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