ecomlab-components-next 0.1.256 → 0.1.259
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/components/ConstructorComponents/ArticlesBlockV2/ArticlesBlockV2.module.scss +99 -181
- package/dist/components/ConstructorComponents/BlocksInfoV2/BlocksInfoV2.js +24 -33
- package/dist/components/ConstructorComponents/BlocksInfoV2/BlocksInfoV2.scss +208 -194
- package/dist/components/ConstructorComponents/CardsServicesV2/CardsServicesV2.js +1 -3
- package/dist/components/ConstructorComponents/CardsServicesV2/CardsServicesV2.scss +103 -127
- package/dist/components/ConstructorComponents/CardsV2/CardsV2.js +10 -11
- package/dist/components/ConstructorComponents/CardsV2/CardsV2.scss +162 -158
- package/dist/components/ConstructorComponents/CardsWithButton/CardsWithButton.js +8 -8
- package/dist/components/ConstructorComponents/CardsWithButton/CardsWithButton.scss +33 -54
- package/dist/components/ConstructorComponents/ClientsAboutUsV2/ClientsAboutUsV2.js +11 -11
- package/dist/components/ConstructorComponents/ClientsAboutUsV2/ClientsAboutUsV2.scss +86 -168
- package/dist/components/ConstructorComponents/FeaturesGridV2/FeaturesGridV2.js +13 -13
- package/dist/components/ConstructorComponents/FeaturesGridV2/FeaturesGridV2.scss +140 -110
- package/dist/components/ConstructorComponents/FormV2/FormV2.js +4 -4
- package/dist/components/ConstructorComponents/FormV2/FormV2.scss +28 -43
- package/dist/components/ConstructorComponents/LogosStrip/LogosStrip.js +9 -9
- package/dist/components/ConstructorComponents/LogosStrip/LogosStrip.scss +30 -43
- package/dist/components/ConstructorComponents/MarqueImgsV2/MarqueImgsV2.scss +1 -1
- package/dist/components/ConstructorComponents/PhoneBlockV2/PhoneBlockV2.js +8 -8
- package/dist/components/ConstructorComponents/PhoneBlockV2/PhoneBlockV2.scss +53 -77
- package/dist/components/ConstructorComponents/PointsListV2/PointsListV2.scss +56 -42
- package/dist/components/ConstructorComponents/QuestionsV2/QuestionsV2.js +12 -12
- package/dist/components/ConstructorComponents/QuestionsV2/QuestionsV2.scss +47 -45
- package/dist/components/ConstructorComponents/SmartReplies/SmartReplies.scss +35 -57
- package/dist/components/ConstructorComponents/StatisticCardV2/StatisticCardV2.js +5 -9
- package/dist/components/ConstructorComponents/StatisticCardV2/StatisticCardV2.module.scss +46 -83
- package/dist/components/ConstructorComponents/StepsV2/StepsV2.js +13 -13
- package/dist/components/ConstructorComponents/StepsV2/StepsV2.module.scss +184 -184
- package/dist/components/ConstructorComponents/VideoBlockV2/VideoBlockV2.scss +26 -28
- package/dist/components/ConstructorComponents/variables.scss +1 -1
- package/package.json +1 -1
|
@@ -1,145 +1,175 @@
|
|
|
1
1
|
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
|
|
2
2
|
@import '../variables.scss';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
box-sizing: border-box;
|
|
6
|
-
margin: 0;
|
|
7
|
-
padding: 0;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.fg5 {
|
|
4
|
+
.features-grid-v2 {
|
|
11
5
|
font-family: 'Manrope', sans-serif;
|
|
12
|
-
background:
|
|
6
|
+
background: $bg;
|
|
13
7
|
width: 100%;
|
|
14
|
-
padding: 96px
|
|
8
|
+
padding: 96px 40px;
|
|
15
9
|
|
|
16
10
|
* {
|
|
17
11
|
font-family: 'Manrope', 'Golos Text', sans-serif !important;
|
|
18
12
|
}
|
|
19
|
-
}
|
|
20
13
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}
|
|
14
|
+
&__inner {
|
|
15
|
+
max-width: 1280px;
|
|
16
|
+
margin: 0 auto;
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
gap: 56px;
|
|
20
|
+
}
|
|
28
21
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
22
|
+
&__header {
|
|
23
|
+
display: flex;
|
|
24
|
+
justify-content: space-between;
|
|
25
|
+
align-items: flex-end;
|
|
26
|
+
gap: 32px;
|
|
27
|
+
}
|
|
36
28
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
29
|
+
&__header-left {
|
|
30
|
+
display: flex;
|
|
31
|
+
flex-direction: column;
|
|
32
|
+
gap: 12px;
|
|
33
|
+
}
|
|
42
34
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
}
|
|
35
|
+
&__title {
|
|
36
|
+
font-size: 30px;
|
|
37
|
+
font-weight: 800;
|
|
38
|
+
letter-spacing: -0.5px;
|
|
39
|
+
color: $text;
|
|
40
|
+
margin: 0;
|
|
41
|
+
}
|
|
50
42
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
}
|
|
43
|
+
&__subtitle {
|
|
44
|
+
font-size: 15px;
|
|
45
|
+
color: $muted;
|
|
46
|
+
line-height: 1.65;
|
|
47
|
+
max-width: 440px;
|
|
48
|
+
margin: 0;
|
|
49
|
+
}
|
|
58
50
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}
|
|
51
|
+
&__items {
|
|
52
|
+
display: grid;
|
|
53
|
+
grid-template-columns: repeat(4, 1fr);
|
|
54
|
+
gap: 24px;
|
|
55
|
+
}
|
|
65
56
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
57
|
+
&__card {
|
|
58
|
+
background: $white;
|
|
59
|
+
border: 1px solid $border;
|
|
60
|
+
border-radius: 20px;
|
|
61
|
+
padding: 28px 24px 32px;
|
|
62
|
+
display: flex;
|
|
63
|
+
flex-direction: column;
|
|
64
|
+
gap: 0;
|
|
65
|
+
transition: transform 0.2s, box-shadow 0.2s;
|
|
66
|
+
cursor: default;
|
|
67
|
+
border-top: 3px solid $green;
|
|
68
|
+
|
|
69
|
+
&:hover {
|
|
70
|
+
transform: translateY(-4px);
|
|
71
|
+
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
78
74
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
75
|
+
&__card-heading {
|
|
76
|
+
font-size: 18px;
|
|
77
|
+
font-weight: 700;
|
|
78
|
+
color: $text;
|
|
79
|
+
line-height: 1.35;
|
|
80
|
+
margin-bottom: 12px;
|
|
81
|
+
}
|
|
83
82
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
83
|
+
&__card-text {
|
|
84
|
+
font-size: 14px;
|
|
85
|
+
color: $muted;
|
|
86
|
+
line-height: 1.7;
|
|
87
|
+
}
|
|
88
88
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
89
|
+
@keyframes fadeUp {
|
|
90
|
+
from {
|
|
91
|
+
opacity: 0;
|
|
92
|
+
transform: translateY(24px);
|
|
93
|
+
}
|
|
94
|
+
to {
|
|
95
|
+
opacity: 1;
|
|
96
|
+
transform: translateY(0);
|
|
97
|
+
}
|
|
98
|
+
}
|
|
95
99
|
}
|
|
96
100
|
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
}
|
|
101
|
+
// Планшет (до 1100px)
|
|
102
|
+
@media (max-width: 1100px) {
|
|
103
|
+
.features-grid-v2 {
|
|
104
|
+
padding: 72px 24px;
|
|
102
105
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
padding: 72px 32px;
|
|
107
|
-
}
|
|
106
|
+
&__items {
|
|
107
|
+
grid-template-columns: repeat(2, 1fr);
|
|
108
|
+
}
|
|
108
109
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
110
|
+
&__header {
|
|
111
|
+
flex-direction: column;
|
|
112
|
+
align-items: flex-start;
|
|
113
|
+
}
|
|
112
114
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
115
|
+
&__items {
|
|
116
|
+
gap: 20px;
|
|
117
|
+
}
|
|
116
118
|
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
119
|
+
&__title {
|
|
120
|
+
font-size: 26px;
|
|
121
|
+
}
|
|
120
122
|
}
|
|
123
|
+
}
|
|
121
124
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
+
// Мобильная версия (до 768px)
|
|
126
|
+
@media (max-width: 768px) {
|
|
127
|
+
.features-grid-v2 {
|
|
128
|
+
|
|
129
|
+
&__subtitle {
|
|
130
|
+
font-size: 14px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
&__card-heading {
|
|
134
|
+
font-size: 16px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
&__card-text {
|
|
138
|
+
font-size: 13px;
|
|
139
|
+
}
|
|
125
140
|
}
|
|
126
141
|
}
|
|
127
142
|
|
|
128
|
-
@media (max-width: 500px) {
|
|
129
|
-
.fg5 {
|
|
130
|
-
padding: 48px 16px;
|
|
131
|
-
}
|
|
132
143
|
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
144
|
+
// Мобильная версия (до 430px)
|
|
145
|
+
@media (max-width: 430px) {
|
|
146
|
+
.features-grid-v2 {
|
|
147
|
+
padding: 40px 20px;
|
|
136
148
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
149
|
+
&__title {
|
|
150
|
+
font-size: 22px;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
&__subtitle {
|
|
154
|
+
font-size: 13px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
&__items {
|
|
158
|
+
grid-template-columns: 1fr;
|
|
159
|
+
gap: 12px;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
&__card {
|
|
163
|
+
padding: 20px 16px 24px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
&__card-heading {
|
|
167
|
+
font-size: 15px;
|
|
168
|
+
margin-bottom: 8px;
|
|
169
|
+
}
|
|
141
170
|
|
|
142
|
-
|
|
143
|
-
|
|
171
|
+
&__card-text {
|
|
172
|
+
font-size: 12px;
|
|
173
|
+
}
|
|
144
174
|
}
|
|
145
175
|
}
|
|
@@ -125,13 +125,13 @@ var FormV2 = function FormV2(_ref) {
|
|
|
125
125
|
setIsModal: setIsModal,
|
|
126
126
|
formTitle: 'Желаемый способ связи'
|
|
127
127
|
}, currentProps())), /*#__PURE__*/_react["default"].createElement("section", {
|
|
128
|
-
className: "form-
|
|
128
|
+
className: "form-v2"
|
|
129
129
|
}, /*#__PURE__*/_react["default"].createElement("h2", {
|
|
130
|
-
className: "form-
|
|
130
|
+
className: "form-v2__title"
|
|
131
131
|
}, title), /*#__PURE__*/_react["default"].createElement("p", {
|
|
132
|
-
className: "form-
|
|
132
|
+
className: "form-v2__description"
|
|
133
133
|
}, description), /*#__PURE__*/_react["default"].createElement("button", {
|
|
134
|
-
className: "form-
|
|
134
|
+
className: "form-v2__button",
|
|
135
135
|
onClick: function onClick() {
|
|
136
136
|
return setIsModal(true);
|
|
137
137
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
|
|
2
2
|
@import '../variables.scss';
|
|
3
3
|
|
|
4
|
-
.form-
|
|
4
|
+
.form-v2 {
|
|
5
|
+
font-family: 'Manrope', sans-serif;
|
|
5
6
|
background: linear-gradient(135deg, $green-forest 0%, $green-light 100%);
|
|
6
|
-
|
|
7
|
+
width: 100%;
|
|
8
|
+
padding: 96px 40px;
|
|
7
9
|
text-align: center;
|
|
8
10
|
position: relative;
|
|
9
11
|
overflow: hidden;
|
|
@@ -12,7 +14,6 @@
|
|
|
12
14
|
font-family: 'Manrope', 'Golos Text', sans-serif !important;
|
|
13
15
|
}
|
|
14
16
|
|
|
15
|
-
// Декоративные элементы
|
|
16
17
|
&::before {
|
|
17
18
|
content: '';
|
|
18
19
|
position: absolute;
|
|
@@ -38,11 +39,10 @@
|
|
|
38
39
|
}
|
|
39
40
|
|
|
40
41
|
&__title {
|
|
41
|
-
font-
|
|
42
|
-
font-size: 34px;
|
|
42
|
+
font-size: 30px;
|
|
43
43
|
font-weight: 800;
|
|
44
44
|
letter-spacing: -1px;
|
|
45
|
-
color:
|
|
45
|
+
color: $white;
|
|
46
46
|
margin-bottom: 16px;
|
|
47
47
|
line-height: 1.2;
|
|
48
48
|
position: relative;
|
|
@@ -50,7 +50,6 @@
|
|
|
50
50
|
}
|
|
51
51
|
|
|
52
52
|
&__description {
|
|
53
|
-
font-family: 'Manrope', sans-serif;
|
|
54
53
|
font-size: 16px;
|
|
55
54
|
line-height: 1.5;
|
|
56
55
|
color: rgba(255, 255, 255, 0.8);
|
|
@@ -65,14 +64,13 @@
|
|
|
65
64
|
&__button {
|
|
66
65
|
position: relative;
|
|
67
66
|
z-index: 1;
|
|
68
|
-
background:
|
|
67
|
+
background: $white;
|
|
69
68
|
color: $green;
|
|
70
69
|
border: none;
|
|
71
70
|
border-radius: 12px;
|
|
72
71
|
padding: 14px 28px;
|
|
73
72
|
font-size: 16px;
|
|
74
73
|
font-weight: 700;
|
|
75
|
-
font-family: 'Manrope', sans-serif;
|
|
76
74
|
cursor: pointer;
|
|
77
75
|
transition: all 0.2s ease;
|
|
78
76
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
|
|
@@ -87,44 +85,41 @@
|
|
|
87
85
|
&:hover {
|
|
88
86
|
transform: translateY(-2px);
|
|
89
87
|
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
|
|
90
|
-
background:
|
|
88
|
+
background: $white;
|
|
91
89
|
}
|
|
92
90
|
|
|
93
91
|
&:active {
|
|
94
92
|
transform: translateY(0);
|
|
95
93
|
}
|
|
96
94
|
}
|
|
95
|
+
|
|
96
|
+
@keyframes fadeUp {
|
|
97
|
+
from {
|
|
98
|
+
opacity: 0;
|
|
99
|
+
transform: translateY(24px);
|
|
100
|
+
}
|
|
101
|
+
to {
|
|
102
|
+
opacity: 1;
|
|
103
|
+
transform: translateY(0);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
97
106
|
}
|
|
98
107
|
|
|
99
|
-
//
|
|
100
|
-
@media (max-width:
|
|
101
|
-
.form-
|
|
102
|
-
padding:
|
|
103
|
-
border-radius: 20px;
|
|
108
|
+
// Планшет (до 1100px)
|
|
109
|
+
@media (max-width: 1100px) {
|
|
110
|
+
.form-v2 {
|
|
111
|
+
padding: 72px 24px;
|
|
104
112
|
|
|
105
113
|
&__title {
|
|
106
114
|
font-size: 26px;
|
|
107
|
-
letter-spacing: -0.5px;
|
|
108
|
-
margin-bottom: 12px;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
&__description {
|
|
112
|
-
font-size: 14px;
|
|
113
|
-
margin-bottom: 24px;
|
|
114
|
-
padding: 0 8px;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
&__button {
|
|
118
|
-
font-size: 15px;
|
|
119
|
-
padding: 13px 24px;
|
|
120
|
-
max-width: 100%;
|
|
121
115
|
}
|
|
122
116
|
}
|
|
123
117
|
}
|
|
124
118
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
119
|
+
// Мобильная версия (до 430px)
|
|
120
|
+
@media (max-width: 430px) {
|
|
121
|
+
.form-v2 {
|
|
122
|
+
padding: 40px 20px;
|
|
128
123
|
|
|
129
124
|
&__title {
|
|
130
125
|
font-size: 22px;
|
|
@@ -132,7 +127,7 @@
|
|
|
132
127
|
|
|
133
128
|
&__description {
|
|
134
129
|
font-size: 13px;
|
|
135
|
-
|
|
130
|
+
margin-bottom: 20px;
|
|
136
131
|
}
|
|
137
132
|
|
|
138
133
|
&__button {
|
|
@@ -140,14 +135,4 @@
|
|
|
140
135
|
padding: 12px 20px;
|
|
141
136
|
}
|
|
142
137
|
}
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
@media (min-width: 769px) and (max-width: 1024px) {
|
|
146
|
-
.form-with-btn2 {
|
|
147
|
-
padding: 42px 32px;
|
|
148
|
-
|
|
149
|
-
&__title {
|
|
150
|
-
font-size: 30px;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
138
|
}
|
|
@@ -9,25 +9,25 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
9
9
|
var _image = _interopRequireDefault(require("next/image"));
|
|
10
10
|
require("./LogosStrip.scss");
|
|
11
11
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
|
12
|
-
var
|
|
12
|
+
var LogosStripV2 = function LogosStripV2(_ref) {
|
|
13
13
|
var title = _ref.title,
|
|
14
14
|
description = _ref.description,
|
|
15
15
|
items = _ref.items;
|
|
16
16
|
return /*#__PURE__*/_react["default"].createElement("section", {
|
|
17
|
-
className: "logos-strip"
|
|
17
|
+
className: "logos-strip-v2"
|
|
18
18
|
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
19
|
-
className: "logos-
|
|
19
|
+
className: "logos-strip-v2__inner"
|
|
20
20
|
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
21
|
-
className: "logos-
|
|
21
|
+
className: "logos-strip-v2__header"
|
|
22
22
|
}, /*#__PURE__*/_react["default"].createElement("h2", {
|
|
23
|
-
className: "logos-
|
|
23
|
+
className: "logos-strip-v2__title"
|
|
24
24
|
}, title || 'Интеграции'), /*#__PURE__*/_react["default"].createElement("p", {
|
|
25
|
-
className: "logos-
|
|
25
|
+
className: "logos-strip-v2__text"
|
|
26
26
|
}, description || 'Интегрируем данные в любую вашу систему учета, CRM или BI систему')), /*#__PURE__*/_react["default"].createElement("div", {
|
|
27
|
-
className: "logos-
|
|
27
|
+
className: "logos-strip-v2__content"
|
|
28
28
|
}, items === null || items === void 0 ? void 0 : items.map(function (item, index) {
|
|
29
29
|
return /*#__PURE__*/_react["default"].createElement("div", {
|
|
30
|
-
className: "logos-
|
|
30
|
+
className: "logos-strip-v2__item",
|
|
31
31
|
key: index
|
|
32
32
|
}, /*#__PURE__*/_react["default"].createElement(_image["default"], {
|
|
33
33
|
src: item,
|
|
@@ -37,4 +37,4 @@ var LogosStrip = function LogosStrip(_ref) {
|
|
|
37
37
|
}));
|
|
38
38
|
}))));
|
|
39
39
|
};
|
|
40
|
-
var _default = exports["default"] =
|
|
40
|
+
var _default = exports["default"] = LogosStripV2;
|
|
@@ -1,20 +1,18 @@
|
|
|
1
1
|
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
|
|
2
2
|
@import '../variables.scss';
|
|
3
3
|
|
|
4
|
-
|
|
5
|
-
$muted: #6B7280;
|
|
6
|
-
$border: #E5E7EB;
|
|
7
|
-
$bg: #F7F8FC;
|
|
8
|
-
$white: #FFFFFF;
|
|
9
|
-
|
|
10
|
-
.logos-strip {
|
|
4
|
+
.logos-strip-v2 {
|
|
11
5
|
font-family: 'Manrope', sans-serif;
|
|
12
6
|
background: $white;
|
|
13
7
|
width: 100%;
|
|
14
|
-
padding:
|
|
8
|
+
padding: 96px 40px;
|
|
15
9
|
border-top: 1px solid $border;
|
|
16
10
|
border-bottom: 1px solid $border;
|
|
17
11
|
|
|
12
|
+
* {
|
|
13
|
+
font-family: 'Manrope', 'Golos Text', sans-serif !important;
|
|
14
|
+
}
|
|
15
|
+
|
|
18
16
|
&__inner {
|
|
19
17
|
max-width: 1280px;
|
|
20
18
|
margin: 0 auto;
|
|
@@ -68,59 +66,48 @@ $white: #FFFFFF;
|
|
|
68
66
|
}
|
|
69
67
|
}
|
|
70
68
|
|
|
71
|
-
@
|
|
72
|
-
|
|
69
|
+
@keyframes fadeUp {
|
|
70
|
+
from {
|
|
71
|
+
opacity: 0;
|
|
72
|
+
transform: translateY(24px);
|
|
73
|
+
}
|
|
74
|
+
to {
|
|
75
|
+
opacity: 1;
|
|
76
|
+
transform: translateY(0);
|
|
77
|
+
}
|
|
73
78
|
}
|
|
79
|
+
}
|
|
74
80
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
margin-bottom: 36px;
|
|
80
|
-
}
|
|
81
|
+
// Планшет (до 1100px)
|
|
82
|
+
@media (max-width: 1100px) {
|
|
83
|
+
.logos-strip-v2 {
|
|
84
|
+
padding: 72px 24px;
|
|
81
85
|
|
|
82
86
|
&__title {
|
|
83
87
|
font-size: 26px;
|
|
84
88
|
}
|
|
85
|
-
|
|
86
|
-
&__text {
|
|
87
|
-
font-size: 14px;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
&__content {
|
|
91
|
-
gap: 32px;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
&__item img {
|
|
95
|
-
max-width: 100px;
|
|
96
|
-
}
|
|
97
89
|
}
|
|
90
|
+
}
|
|
98
91
|
|
|
99
|
-
|
|
100
|
-
|
|
92
|
+
// Мобильная версия (до 430px)
|
|
93
|
+
@media (max-width: 430px) {
|
|
94
|
+
.logos-strip-v2 {
|
|
95
|
+
padding: 40px 20px;
|
|
101
96
|
|
|
102
97
|
&__title {
|
|
103
|
-
font-size:
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
&__content {
|
|
107
|
-
gap: 24px;
|
|
98
|
+
font-size: 22px;
|
|
108
99
|
}
|
|
109
100
|
|
|
110
|
-
&
|
|
111
|
-
|
|
101
|
+
&__text {
|
|
102
|
+
font-size: 13px;
|
|
112
103
|
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
@media (max-width: 600px) {
|
|
116
|
-
padding: 36px 20px;
|
|
117
104
|
|
|
118
105
|
&__content {
|
|
119
|
-
gap:
|
|
106
|
+
gap: 16px;
|
|
120
107
|
}
|
|
121
108
|
|
|
122
109
|
&__item img {
|
|
123
|
-
max-width:
|
|
110
|
+
max-width: 60px;
|
|
124
111
|
}
|
|
125
112
|
}
|
|
126
113
|
}
|
|
@@ -14,25 +14,25 @@ function _objectDestructuringEmpty(t) { if (null == t) throw new TypeError("Cann
|
|
|
14
14
|
var PhoneBlockV2 = function PhoneBlockV2(_ref) {
|
|
15
15
|
_objectDestructuringEmpty(_ref);
|
|
16
16
|
return /*#__PURE__*/_react["default"].createElement("section", {
|
|
17
|
-
className: "phone-
|
|
17
|
+
className: "phone-block-v2"
|
|
18
18
|
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
19
|
-
className: "phone-
|
|
19
|
+
className: "phone-block-v2__content"
|
|
20
20
|
}, /*#__PURE__*/_react["default"].createElement("div", {
|
|
21
|
-
className: "phone-
|
|
21
|
+
className: "phone-block-v2__badge"
|
|
22
22
|
}, "Telegram-\u043A\u0430\u043D\u0430\u043B"), /*#__PURE__*/_react["default"].createElement("h2", {
|
|
23
|
-
className: "phone-
|
|
23
|
+
className: "phone-block-v2__title"
|
|
24
24
|
}, "\u0417\u0430\u0445\u043E\u0434\u0438 \u0432 \u043D\u0430\u0448 ", /*#__PURE__*/_react["default"].createElement("span", null, "Telegram-\u043A\u0430\u043D\u0430\u043B"), ", \u0442\u0430\u043C \u043C\u044B \u0440\u0435\u0433\u0443\u043B\u044F\u0440\u043D\u043E \u0434\u0435\u043B\u0438\u043C\u0441\u044F \u043F\u043E\u043B\u0435\u0437\u043D\u043E\u0439 \u0438\u043D\u0444\u043E\u0439 \u0438 \u043D\u0430\u0448\u0438\u043C\u0438 \u043A\u0435\u0439\u0441\u0430\u043C\u0438"), /*#__PURE__*/_react["default"].createElement("p", {
|
|
25
|
-
className: "phone-
|
|
25
|
+
className: "phone-block-v2__description"
|
|
26
26
|
}, "\u0422\u0430\u043C \u0442\u044B \u043D\u0430\u0439\u0434\u0451\u0448\u044C \u0435\u0434\u0438\u043D\u043E\u043C\u044B\u0448\u043B\u0435\u043D\u043D\u0438\u043A\u043E\u0432, \u043F\u043E\u0434\u0435\u043B\u0438\u0448\u044C\u0441\u044F \u043E\u043F\u044B\u0442\u043E\u043C \u0438 \u0437\u0430\u0434\u0430\u0448\u044C \u0438\u043D\u0442\u0435\u0440\u0435\u0441\u0443\u044E\u0449\u0438\u0435 \u0432\u043E\u043F\u0440\u043E\u0441\u044B, \u043D\u0430 \u043A\u043E\u0442\u043E\u0440\u044B\u0435 \u043C\u044B \u043E\u0431\u044F\u0437\u0430\u0442\u0435\u043B\u044C\u043D\u043E \u043E\u0442\u0432\u0435\u0442\u0438\u043C"), /*#__PURE__*/_react["default"].createElement("button", {
|
|
27
|
-
className: "phone-
|
|
27
|
+
className: "phone-block-v2__button",
|
|
28
28
|
onClick: function onClick() {
|
|
29
29
|
var _window;
|
|
30
30
|
return (_window = window) === null || _window === void 0 ? void 0 : _window.open('https://t.me/itkasha', '_blank');
|
|
31
31
|
}
|
|
32
32
|
}, "\u041D\u0430\u0448\u0438 \u043D\u043E\u0432\u043E\u0441\u0442\u0438 \u2192")), /*#__PURE__*/_react["default"].createElement("div", {
|
|
33
|
-
className: "phone-
|
|
33
|
+
className: "phone-block-v2__image-box"
|
|
34
34
|
}, /*#__PURE__*/_react["default"].createElement(_image["default"], {
|
|
35
|
-
className: "phone-
|
|
35
|
+
className: "phone-block-v2__image",
|
|
36
36
|
src: _phone["default"],
|
|
37
37
|
alt: "Telegram phone"
|
|
38
38
|
})));
|