@linzjs/lui 18.4.3 → 18.4.5
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 +14 -0
- package/dist/index.js +4 -5
- package/dist/index.js.map +1 -1
- package/dist/lui.css +27 -29
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +4 -5
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/LuiErrorPage/LuiErrorPage.scss +27 -19
- package/dist/scss/Components/Modal/modal.scss +16 -14
- package/package.json +1 -1
|
@@ -1,37 +1,45 @@
|
|
|
1
1
|
@use '../../Core.scss' as lui;
|
|
2
|
+
@use "../../Foundation/Utilities" as *;
|
|
3
|
+
|
|
4
|
+
$MaxContentWidth: rem(800px);
|
|
5
|
+
$MaxImgWidth: rem(280px);
|
|
2
6
|
|
|
3
7
|
.LuiErrorPage {
|
|
4
|
-
display:
|
|
5
|
-
|
|
8
|
+
display: grid;
|
|
9
|
+
grid-template-columns: 1fr;
|
|
10
|
+
grid-template-rows: minmax(min-content, max-content) 1fr minmax(
|
|
11
|
+
min-content,
|
|
12
|
+
max-content
|
|
13
|
+
);
|
|
14
|
+
height: 100%;
|
|
6
15
|
}
|
|
7
16
|
|
|
8
17
|
.LuiErrorPage-wrapper {
|
|
9
|
-
margin-top: 32px;
|
|
10
|
-
margin-bottom: 96px;
|
|
11
18
|
display: grid;
|
|
12
|
-
grid-template-columns:
|
|
13
|
-
gap: 24px;
|
|
14
|
-
}
|
|
19
|
+
grid-template-columns: 1fr;
|
|
15
20
|
|
|
16
|
-
.LuiErrorPage-content {
|
|
17
|
-
grid-column: span 12;
|
|
18
|
-
@include lui.breakpoint(sm) {
|
|
19
|
-
grid-column: span 7;
|
|
20
|
-
}
|
|
21
21
|
@include lui.breakpoint(md) {
|
|
22
|
-
grid-
|
|
22
|
+
grid-template-columns: 1fr $MaxImgWidth;
|
|
23
|
+
}
|
|
24
|
+
max-width: $MaxContentWidth;
|
|
25
|
+
margin: lui.$unit-xl auto;
|
|
26
|
+
.ErrorPageHeading {
|
|
27
|
+
margin-top: 0;
|
|
23
28
|
}
|
|
24
29
|
}
|
|
25
30
|
|
|
26
31
|
.LuiErrorPage-image {
|
|
27
|
-
|
|
28
|
-
@include lui.breakpoint(sm) {
|
|
29
|
-
grid-column: span 5;
|
|
30
|
-
}
|
|
32
|
+
justify-self: center;
|
|
31
33
|
@include lui.breakpoint(md) {
|
|
32
|
-
|
|
34
|
+
justify-self: start;
|
|
33
35
|
}
|
|
34
36
|
img {
|
|
35
|
-
|
|
37
|
+
display: block;
|
|
38
|
+
width: $MaxImgWidth;
|
|
39
|
+
height: auto;
|
|
40
|
+
margin-top: lui.$unit-sm;
|
|
41
|
+
@include lui.breakpoint(md) {
|
|
42
|
+
margin-top: 0;
|
|
43
|
+
}
|
|
36
44
|
}
|
|
37
45
|
}
|
|
@@ -90,26 +90,28 @@
|
|
|
90
90
|
&-btn-size {
|
|
91
91
|
font-size: rem(32px);
|
|
92
92
|
}
|
|
93
|
-
|
|
94
|
-
&-default{
|
|
93
|
+
&-default {
|
|
95
94
|
@include lui-standard-header-background(5px);
|
|
95
|
+
}
|
|
96
|
+
&-default &-title {
|
|
96
97
|
h1 {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
98
|
+
color: colors.$white;
|
|
99
|
+
}
|
|
100
|
+
path{
|
|
101
|
+
fill: rgb(255 255 255 / 70%);
|
|
102
|
+
}
|
|
102
103
|
}
|
|
103
|
-
|
|
104
|
-
&-light{
|
|
104
|
+
|
|
105
|
+
&-light &-title {
|
|
105
106
|
h1 {
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
107
|
+
color: colors.$surfie;
|
|
108
|
+
}
|
|
109
|
+
path{
|
|
110
|
+
fill: colors.$gray;
|
|
111
|
+
}
|
|
111
112
|
}
|
|
112
113
|
}
|
|
114
|
+
|
|
113
115
|
&-container {
|
|
114
116
|
margin: spacing.$unit-lg;
|
|
115
117
|
}
|
package/package.json
CHANGED