@linzjs/lui 17.13.2 → 17.13.3-1
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/LuiUpdateSplashModal/LuiUpdatesSplashModal.d.ts +1 -0
- package/dist/components/lol/contexts/LOLUserContext.d.ts +2 -27
- package/dist/index.js +39 -28
- package/dist/index.js.map +1 -1
- package/dist/lui.css +30 -19
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +33 -27
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/Notifications/notifications.scss +33 -24
- package/package.json +2 -1
|
@@ -4,12 +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
16
|
min-width: 700px;
|
|
14
17
|
max-width: 800px;
|
|
15
18
|
min-height: 300px;
|
|
@@ -18,36 +21,39 @@
|
|
|
18
21
|
@include breakpoint(md) {
|
|
19
22
|
max-width: 900px;
|
|
20
23
|
}
|
|
21
|
-
|
|
22
|
-
button {
|
|
23
|
-
color: colors.$sea;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
background-color: #fff;
|
|
27
24
|
position: relative;
|
|
28
25
|
}
|
|
29
26
|
|
|
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;
|
|
27
|
+
.lui-feature-header {
|
|
28
|
+
display: flex;
|
|
29
|
+
justify-content: space-between;
|
|
30
|
+
margin: spacing.$unit-rg spacing.$unit-rg 0 spacing.$unit-rg;
|
|
40
31
|
|
|
41
32
|
h1 {
|
|
42
33
|
color: #fff;
|
|
43
|
-
margin: 0
|
|
34
|
+
margin: 0;
|
|
44
35
|
text-shadow: 1.5px 1.5px 1px rgba(0, 75, 80, 1);
|
|
45
|
-
|
|
36
|
+
font-size: 1.5rem;
|
|
37
|
+
line-height: 1.5rem;
|
|
38
|
+
@include breakpoint(md) {
|
|
46
39
|
text-shadow: 1px 1px 1px rgba(0, 75, 80, 1);
|
|
47
|
-
font-size:
|
|
40
|
+
font-size: 2rem;
|
|
41
|
+
line-height: 2rem;
|
|
48
42
|
}
|
|
49
43
|
}
|
|
50
44
|
|
|
45
|
+
button {
|
|
46
|
+
color: colors.$sea;
|
|
47
|
+
background-color: transparent;
|
|
48
|
+
padding: 0;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.lui-feature-img {
|
|
53
|
+
min-height: 100px;
|
|
54
|
+
padding: spacing.$unit-rg spacing.$unit-rg 0 spacing.$unit-rg;
|
|
55
|
+
border-bottom: 1px solid colors.$sea;
|
|
56
|
+
|
|
51
57
|
img {
|
|
52
58
|
width: 100%;
|
|
53
59
|
height: auto;
|
|
@@ -58,6 +64,9 @@
|
|
|
58
64
|
}
|
|
59
65
|
|
|
60
66
|
.lui-feature-text {
|
|
61
|
-
padding
|
|
62
|
-
|
|
67
|
+
padding: spacing.$unit-md;
|
|
68
|
+
background-color: colors.$white;
|
|
69
|
+
h2:first-of-type {
|
|
70
|
+
margin-top: 0;
|
|
71
|
+
}
|
|
63
72
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "17.13.
|
|
2
|
+
"version": "17.13.3-1",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
@@ -143,6 +143,7 @@
|
|
|
143
143
|
"yup": "^0.29.0"
|
|
144
144
|
},
|
|
145
145
|
"dependencies": {
|
|
146
|
+
"@linz/lol-auth-js": "^0.1.2",
|
|
146
147
|
"@fontsource/open-sans": "^4.5.1",
|
|
147
148
|
"@react-aria/focus": "^3.7.0",
|
|
148
149
|
"@react-aria/listbox": "^3.6.0",
|