@zenpatient-org/healthspan-marketing-ui 0.2.15 → 0.2.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.
@@ -6,45 +6,43 @@
6
6
  background-size: cover;
7
7
  background-repeat: no-repeat;
8
8
  background-position: center;
9
+ background-color: var(--color-black);
10
+ -webkit-font-smoothing: antialiased;
11
+ -moz-osx-font-smoothing: grayscale;
9
12
  }
10
13
 
11
14
  .container {
12
15
  position: relative;
13
16
  display: flex;
14
- justify-content: flex-end;
17
+ align-items: flex-end;
15
18
  width: 100%;
16
- max-width: var(--content-max-width);
17
- height: 100%;
19
+ height: 100vh;
20
+ min-height: 50vh;
18
21
  }
19
22
 
20
23
  .headline {
21
24
  position: relative;
22
- display: flex;
25
+ display: grid;
23
26
  width: 100%;
24
- min-height: 216px;
27
+ grid-template-columns: 1fr var(--border-width-sm) 1fr;
25
28
  justify-content: center;
26
- align-items: flex-start;
27
- margin-top: 564px;
28
29
  margin-bottom: 30px;
29
30
  }
30
31
 
31
32
  .infoContainer,
32
33
  .titleContainer {
33
34
  display: flex;
34
- padding-top: 54px;
35
+ align-items: center;
36
+ padding: 46px;
35
37
  position: relative;
36
- width: 50%;
37
38
  height: 100%;
38
39
  overflow: hidden;
39
40
  }
40
41
 
41
- .infoContainer {
42
- padding-left: 46px;
43
- padding-bottom: 46px;
44
- }
45
42
 
46
43
  .titleContainer {
47
44
  justify-content: flex-end;
45
+ align-items: flex-end;
48
46
  padding-right: 46px;
49
47
  }
50
48
 
@@ -81,16 +79,14 @@
81
79
 
82
80
  .title {
83
81
  color: var(--color-white);
84
- text-align: center;
82
+ max-width: 14ch;
85
83
  }
86
84
 
87
85
  .midBorder {
88
86
  position: relative;
89
- height: 148px;
90
- margin-top: 38px;
87
+ margin-block: 38px;
91
88
  width: var(--border-width-sm);
92
89
  background: var(--border-color-alpha-white-20);
93
- min-height: 1px;
94
90
  }
95
91
 
96
92
  .infoBox {
@@ -113,17 +109,21 @@
113
109
 
114
110
  @media screen and (width <= 768px) {
115
111
  .headline {
116
- flex-direction: column;
117
- margin-top: 372px;
118
- margin-bottom: 16px;
119
112
  height: 100%;
120
- max-height: none;
113
+ grid-template-columns: 1fr;
114
+ grid-template-rows: 1fr var(--border-width-sm) 1fr;
115
+ align-items: end;
116
+ height: fit-content;
121
117
  }
122
118
 
123
119
  .infoContainer,
124
120
  .titleContainer {
121
+ max-height: fit-content;
125
122
  padding: 24px;
126
123
  width: 100%;
124
+ }
125
+
126
+ .titleContainer {
127
127
  justify-content: flex-start;
128
128
  }
129
129
 
@@ -151,3 +151,10 @@
151
151
  width: 100%;
152
152
  }
153
153
  }
154
+
155
+
156
+ @media screen and ( height > 1080px) {
157
+ .container {
158
+ height: 50vh;
159
+ }
160
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenpatient-org/healthspan-marketing-ui",
3
- "version": "0.2.15",
3
+ "version": "0.2.16",
4
4
  "description": "Design system",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",