@linzjs/lui 24.16.0 → 24.17.0
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/assets/images/nz-govt-logo-arms.svg +200 -34
- package/dist/assets/images/nz-govt-logo-rev.svg +53 -196
- package/dist/index.js +10 -6
- package/dist/index.js.map +1 -1
- package/dist/lui.css +51 -18
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +10 -6
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/Footer/footer.scss +52 -14
- package/dist/scss/Components/LuiFormElements/LuiSelectInput/LuiSelectInput.scss +1 -0
- package/package.json +1 -1
|
@@ -114,7 +114,8 @@
|
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
-
.lui-footer-linz-logo
|
|
117
|
+
.lui-footer-linz-logo,
|
|
118
|
+
.design-system-page .lui-footer-linz-logo {
|
|
118
119
|
margin-top: lui.$unit-sm;
|
|
119
120
|
|
|
120
121
|
@include breakpoint(md) {
|
|
@@ -125,22 +126,35 @@
|
|
|
125
126
|
.lui-footer-nz-govt-logo,
|
|
126
127
|
.lui-footer-copyright {
|
|
127
128
|
text-align: left;
|
|
128
|
-
|
|
129
|
-
height: toRem(60px);
|
|
130
|
-
width: auto;
|
|
131
|
-
}
|
|
129
|
+
|
|
132
130
|
@include breakpoint(md) {
|
|
133
131
|
text-align: right;
|
|
134
132
|
}
|
|
135
133
|
}
|
|
136
134
|
|
|
137
|
-
.lui-footer-nz-govt-logo
|
|
135
|
+
.lui-footer-nz-govt-logo,
|
|
136
|
+
.design-system-page .lui-footer-nz-govt-logo {
|
|
138
137
|
margin-top: lui.$unit-xl;
|
|
138
|
+
|
|
139
139
|
@include breakpoint(md) {
|
|
140
140
|
margin-top: 0;
|
|
141
141
|
text-align: right;
|
|
142
142
|
}
|
|
143
143
|
}
|
|
144
|
+
.lui-footer-nz-govt-logo-link,
|
|
145
|
+
.design-system-page .lui-footer-nz-govt-logo-link {
|
|
146
|
+
height: 2rem;
|
|
147
|
+
opacity: 0.7;
|
|
148
|
+
|
|
149
|
+
&--arms {
|
|
150
|
+
height: 3.75rem;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.lui-footer-nz-govt-logo-img {
|
|
155
|
+
height: 100%;
|
|
156
|
+
width: auto;
|
|
157
|
+
}
|
|
144
158
|
|
|
145
159
|
.lui-small {
|
|
146
160
|
text-align: left;
|
|
@@ -180,9 +194,15 @@ $FooterCopyWriteForceLineBreak: toRem(250px);
|
|
|
180
194
|
grid-template-columns: 1fr;
|
|
181
195
|
align-items: center;
|
|
182
196
|
padding: lui.$unit-md;
|
|
197
|
+
|
|
198
|
+
@container appFooterSml {
|
|
199
|
+
gap: lui.$unit-md;
|
|
200
|
+
}
|
|
201
|
+
|
|
183
202
|
@container appFooterSml (inline-size >= #{$AppFooterSmlContainerBreakPointMd}) {
|
|
184
203
|
grid-template-columns: 1fr $FooterLogoWidthPlusPadding;
|
|
185
204
|
padding: 0 lui.$unit-md;
|
|
205
|
+
min-height: 70px;
|
|
186
206
|
}
|
|
187
207
|
}
|
|
188
208
|
|
|
@@ -230,10 +250,22 @@ $FooterCopyWriteForceLineBreak: toRem(250px);
|
|
|
230
250
|
color: lui.$snow;
|
|
231
251
|
font-size: toRem(14px);
|
|
232
252
|
@include lui.font-regular();
|
|
233
|
-
|
|
253
|
+
height: 100%;
|
|
234
254
|
opacity: 0.8;
|
|
235
255
|
margin: 0;
|
|
236
256
|
align-items: end;
|
|
257
|
+
|
|
258
|
+
@container appFooterSml {
|
|
259
|
+
line-height: toRem(20px);
|
|
260
|
+
align-items: center;
|
|
261
|
+
display: flex;
|
|
262
|
+
gap: lui.$unit-sm;
|
|
263
|
+
|
|
264
|
+
span {
|
|
265
|
+
display: block;
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
|
|
237
269
|
@container appFooterSml (inline-size >= #{$AppFooterSmlContainerBreakPointSml}) {
|
|
238
270
|
grid-row-start: -2;
|
|
239
271
|
grid-row-end: -1;
|
|
@@ -251,14 +283,20 @@ $FooterCopyWriteForceLineBreak: toRem(250px);
|
|
|
251
283
|
white-space: nowrap;
|
|
252
284
|
}
|
|
253
285
|
|
|
254
|
-
.luiAppFooter-nzGovtLogo {
|
|
286
|
+
.luiAppFooter-nzGovtLogo-link {
|
|
255
287
|
justify-self: start;
|
|
256
|
-
|
|
257
|
-
|
|
288
|
+
opacity: 0.7;
|
|
289
|
+
height: 2rem;
|
|
290
|
+
display: block;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.luiAppFooter-nzGovtLogo-img {
|
|
294
|
+
height: 100%;
|
|
295
|
+
width: auto;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
@container appFooterSml (inline-size >= #{$AppFooterSmlContainerBreakPointMd}) {
|
|
299
|
+
.luiAppFooter-nzGovtLogo {
|
|
258
300
|
justify-self: end;
|
|
259
301
|
}
|
|
260
|
-
img {
|
|
261
|
-
height: $FooterLogoHeight;
|
|
262
|
-
width: auto;
|
|
263
|
-
}
|
|
264
302
|
}
|
package/package.json
CHANGED