@hellobetterdigitalnz/selwynui 0.0.1-31 → 0.0.1-33
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/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +802 -846
- package/dist/index.es.js.map +1 -1
- package/dist/selwynui.css +1 -1
- package/package.json +1 -1
- package/src/Components/DataDisplay/ChatItenaryBlock/chatItenaryBlock.module.scss +720 -729
- package/src/Components/DataDisplay/IntroBlock/introBlock.module.scss +55 -55
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
|
|
2
|
-
.introBlockWrapper {
|
|
3
|
-
.introBlockLeft {
|
|
4
|
-
padding: 0 0 48px 0;
|
|
5
|
-
h1 {
|
|
6
|
-
font-size: var(--font-size-h5);
|
|
7
|
-
font-weight: var(--font-weight-h3);
|
|
8
|
-
line-height: var(--line-height-h5);
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.introBlockRight {
|
|
13
|
-
h1 {
|
|
14
|
-
font-size: var(--font-size-regular);
|
|
15
|
-
font-weight: var(--font-weight-body-regular);
|
|
16
|
-
line-height: var(--line-height-label);
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
@media screen and (min-width: 992px) {
|
|
22
|
-
.introBlockWrapper {
|
|
23
|
-
display: flex;
|
|
24
|
-
flex-grow: 1;
|
|
25
|
-
margin: 0 -72px;
|
|
26
|
-
|
|
27
|
-
.introBlockLeft {
|
|
28
|
-
width: 50%;
|
|
29
|
-
padding: 0 72px;
|
|
30
|
-
|
|
31
|
-
h1 {
|
|
32
|
-
font-size: var(--font-size-h4);
|
|
33
|
-
line-height: var(--line-height-h4);
|
|
34
|
-
font-weight: var(--font-weight-h4);
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.introBlockRight {
|
|
39
|
-
width: 50%;
|
|
40
|
-
padding: 0 72px;
|
|
41
|
-
|
|
42
|
-
h1 {
|
|
43
|
-
font-size: var(--font-size-small);
|
|
44
|
-
line-height: var(--line-height-label);
|
|
45
|
-
font-weight: var(--font-weight-body-regular);
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.introBlockVerticalLine {
|
|
50
|
-
background: var(--color-text);
|
|
51
|
-
width: 1px;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
1
|
+
//.introBlock {
|
|
2
|
+
// .introBlockWrapper {
|
|
3
|
+
// .introBlockLeft {
|
|
4
|
+
// padding: 0 0 48px 0;
|
|
5
|
+
// h1 {
|
|
6
|
+
// font-size: var(--font-size-h5);
|
|
7
|
+
// font-weight: var(--font-weight-h3);
|
|
8
|
+
// line-height: var(--line-height-h5);
|
|
9
|
+
// }
|
|
10
|
+
// }
|
|
11
|
+
//
|
|
12
|
+
// .introBlockRight {
|
|
13
|
+
// h1 {
|
|
14
|
+
// font-size: var(--font-size-regular);
|
|
15
|
+
// font-weight: var(--font-weight-body-regular);
|
|
16
|
+
// line-height: var(--line-height-label);
|
|
17
|
+
// }
|
|
18
|
+
// }
|
|
19
|
+
// }
|
|
20
|
+
//
|
|
21
|
+
// @media screen and (min-width: 992px) {
|
|
22
|
+
// .introBlockWrapper {
|
|
23
|
+
// display: flex;
|
|
24
|
+
// flex-grow: 1;
|
|
25
|
+
// margin: 0 -72px;
|
|
26
|
+
//
|
|
27
|
+
// .introBlockLeft {
|
|
28
|
+
// width: 50%;
|
|
29
|
+
// padding: 0 72px;
|
|
30
|
+
//
|
|
31
|
+
// h1 {
|
|
32
|
+
// font-size: var(--font-size-h4);
|
|
33
|
+
// line-height: var(--line-height-h4);
|
|
34
|
+
// font-weight: var(--font-weight-h4);
|
|
35
|
+
// }
|
|
36
|
+
// }
|
|
37
|
+
//
|
|
38
|
+
// .introBlockRight {
|
|
39
|
+
// width: 50%;
|
|
40
|
+
// padding: 0 72px;
|
|
41
|
+
//
|
|
42
|
+
// h1 {
|
|
43
|
+
// font-size: var(--font-size-small);
|
|
44
|
+
// line-height: var(--line-height-label);
|
|
45
|
+
// font-weight: var(--font-weight-body-regular);
|
|
46
|
+
// }
|
|
47
|
+
// }
|
|
48
|
+
//
|
|
49
|
+
// .introBlockVerticalLine {
|
|
50
|
+
// background: var(--color-text);
|
|
51
|
+
// width: 1px;
|
|
52
|
+
// }
|
|
53
|
+
// }
|
|
54
|
+
// }
|
|
55
|
+
//}
|