@linzjs/lui 17.13.2 → 17.13.3
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/CHANGELOG.md +7 -0
- package/dist/components/LuiUpdateSplashModal/LuiUpdatesSplashModal.d.ts +1 -0
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/dist/lui.css +34 -20
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +7 -6
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/Notifications/notifications.scss +37 -25
- package/package.json +1 -1
|
@@ -4,13 +4,15 @@
|
|
|
4
4
|
@use "../../Foundation/Utilities" as *;
|
|
5
5
|
|
|
6
6
|
.lui-large-feature-notification {
|
|
7
|
-
// @include lui-close-btn-icon;
|
|
8
7
|
width: 100%;
|
|
9
|
-
|
|
8
|
+
background: rgb(0, 161, 161);
|
|
9
|
+
background: linear-gradient(
|
|
10
|
+
62deg,
|
|
11
|
+
rgba(0, 161, 161, 1) 0%,
|
|
12
|
+
rgba(191, 237, 246, 1) 100%
|
|
13
|
+
);
|
|
10
14
|
|
|
11
15
|
@include breakpoint(sm) {
|
|
12
|
-
padding-bottom: spacing.$unit-lg;
|
|
13
|
-
min-width: 700px;
|
|
14
16
|
max-width: 800px;
|
|
15
17
|
min-height: 300px;
|
|
16
18
|
}
|
|
@@ -18,36 +20,41 @@
|
|
|
18
20
|
@include breakpoint(md) {
|
|
19
21
|
max-width: 900px;
|
|
20
22
|
}
|
|
21
|
-
|
|
22
|
-
button {
|
|
23
|
-
color: colors.$sea;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
background-color: #fff;
|
|
27
23
|
position: relative;
|
|
28
24
|
}
|
|
29
25
|
|
|
30
|
-
.lui-feature-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
rgba(0, 161, 161, 1) 0%,
|
|
35
|
-
rgba(191, 237, 246, 1) 100%
|
|
36
|
-
);
|
|
37
|
-
min-height: 100px;
|
|
38
|
-
padding: spacing.$unit-lg spacing.$unit-lg 0 spacing.$unit-lg;
|
|
39
|
-
border-bottom: 1px solid colors.$sea;
|
|
26
|
+
.lui-feature-header {
|
|
27
|
+
display: flex;
|
|
28
|
+
justify-content: space-between;
|
|
29
|
+
margin: spacing.$unit-rg spacing.$unit-rg 0 spacing.$unit-rg;
|
|
40
30
|
|
|
41
31
|
h1 {
|
|
42
32
|
color: #fff;
|
|
43
|
-
margin: 0
|
|
33
|
+
margin: 0;
|
|
44
34
|
text-shadow: 1.5px 1.5px 1px rgba(0, 75, 80, 1);
|
|
45
|
-
|
|
35
|
+
font-size: 1.5rem;
|
|
36
|
+
line-height: 1.5rem;
|
|
37
|
+
@include breakpoint(md) {
|
|
46
38
|
text-shadow: 1px 1px 1px rgba(0, 75, 80, 1);
|
|
47
|
-
font-size:
|
|
39
|
+
font-size: 2rem;
|
|
40
|
+
line-height: 2rem;
|
|
48
41
|
}
|
|
49
42
|
}
|
|
50
43
|
|
|
44
|
+
button {
|
|
45
|
+
color: colors.$sea;
|
|
46
|
+
background-color: transparent;
|
|
47
|
+
padding: 0;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.lui-feature-img {
|
|
52
|
+
min-height: 100px;
|
|
53
|
+
padding: spacing.$unit-rg spacing.$unit-rg 0 spacing.$unit-rg;
|
|
54
|
+
border-bottom: 1px solid colors.$sea;
|
|
55
|
+
max-height: 54vh; //need to stop the panel from flowing over the view vertically and user being unable to interact with it
|
|
56
|
+
overflow: auto;
|
|
57
|
+
|
|
51
58
|
img {
|
|
52
59
|
width: 100%;
|
|
53
60
|
height: auto;
|
|
@@ -58,6 +65,11 @@
|
|
|
58
65
|
}
|
|
59
66
|
|
|
60
67
|
.lui-feature-text {
|
|
61
|
-
padding
|
|
62
|
-
|
|
68
|
+
padding: spacing.$unit-rg spacing.$unit-rg spacing.$unit-md spacing.$unit-rg;
|
|
69
|
+
background-color: colors.$white;
|
|
70
|
+
max-height: 36vh; //need to stop the panel from flowing over the view vertically and user being unable to interact with it.
|
|
71
|
+
overflow: auto;
|
|
72
|
+
h2:first-of-type {
|
|
73
|
+
margin-top: 0;
|
|
74
|
+
}
|
|
63
75
|
}
|
package/package.json
CHANGED