@zenpatient-org/healthspan-marketing-ui 0.2.83 → 0.2.84
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/pageComponents/TreatmentsHero/components/TreatmentHeroCard/treatmentHeroCard.module.css
CHANGED
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
@media (width <= 768px) {
|
|
34
|
+
.root {
|
|
35
|
+
gap: 12px;
|
|
36
|
+
}
|
|
37
|
+
|
|
34
38
|
.imageWrapper {
|
|
35
|
-
max-height:
|
|
39
|
+
max-height: 120px;
|
|
36
40
|
border-radius: var(--border-radius-sm);
|
|
37
41
|
}
|
|
38
42
|
|
|
39
43
|
.image {
|
|
40
44
|
aspect-ratio: 1 / 1;
|
|
41
45
|
}
|
|
42
|
-
|
|
43
|
-
.text {
|
|
44
|
-
text-align: center;
|
|
45
|
-
}
|
|
46
46
|
}
|
|
@@ -4,13 +4,13 @@
|
|
|
4
4
|
align-items: center;
|
|
5
5
|
justify-content: center;
|
|
6
6
|
flex-direction: column;
|
|
7
|
-
background-color: #
|
|
7
|
+
background-color: #f6f6f9;
|
|
8
8
|
gap: 48px;
|
|
9
9
|
z-index: 0;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.row:last-child {
|
|
13
|
-
padding-bottom:
|
|
13
|
+
padding-bottom: 48px;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.headerContainer {
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.headerContainer::before {
|
|
28
|
-
content:
|
|
28
|
+
content: '';
|
|
29
29
|
position: absolute;
|
|
30
30
|
inset: 0;
|
|
31
31
|
background:
|
|
32
|
-
linear-gradient(0, rgba(0, 0, 0, 0.
|
|
33
|
-
url('./assets/bg-bubbles.webp') #
|
|
32
|
+
linear-gradient(0, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 25%),
|
|
33
|
+
url('./assets/bg-bubbles.webp') #f6f6f9 center 20% no-repeat;
|
|
34
34
|
background-size: 100% auto;
|
|
35
35
|
transform: rotate(180deg);
|
|
36
36
|
z-index: -1;
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
.headerContent {
|
|
41
41
|
width: 100%;
|
|
42
42
|
max-width: var(--content-max-width);
|
|
43
|
-
padding: 48px
|
|
43
|
+
padding: 48px 50px 0;
|
|
44
44
|
display: flex;
|
|
45
45
|
align-items: flex-end;
|
|
46
46
|
justify-content: space-between;
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
.cardsContainer {
|
|
68
68
|
width: 100%;
|
|
69
69
|
max-width: var(--content-max-width);
|
|
70
|
-
padding: 15px
|
|
70
|
+
padding: 15px 50px 0;
|
|
71
71
|
display: flex;
|
|
72
72
|
align-items: flex-start;
|
|
73
73
|
justify-content: flex-start;
|
|
@@ -84,7 +84,6 @@
|
|
|
84
84
|
}
|
|
85
85
|
}
|
|
86
86
|
|
|
87
|
-
|
|
88
87
|
@media (width <= 1024px) {
|
|
89
88
|
.root {
|
|
90
89
|
gap: 16px;
|
|
@@ -119,3 +118,31 @@
|
|
|
119
118
|
display: none;
|
|
120
119
|
}
|
|
121
120
|
}
|
|
121
|
+
|
|
122
|
+
@media (width <= 800px) {
|
|
123
|
+
.headerText {
|
|
124
|
+
gap: 16px;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@media (width <= 600px) {
|
|
129
|
+
.row:last-child {
|
|
130
|
+
padding-bottom: 36px;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.cardsContainer {
|
|
134
|
+
gap: 16px;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
@media (width <= 480px) {
|
|
139
|
+
.root {
|
|
140
|
+
gap: 24px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.cardsContainer {
|
|
144
|
+
display: grid;
|
|
145
|
+
grid-template-columns: repeat(2, 1fr);
|
|
146
|
+
grid-gap: 24px 16px;
|
|
147
|
+
}
|
|
148
|
+
}
|