@ulu/frontend 0.6.19 → 0.6.21
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/mcp-data.json +308 -260
- package/dist/umd/frontend.css +1 -1
- package/lib/scss/components/_card.scss +13 -0
- package/package.json +1 -1
|
@@ -200,6 +200,12 @@ $config: (
|
|
|
200
200
|
display: grid;
|
|
201
201
|
grid-template-columns: 1fr;
|
|
202
202
|
grid-template-rows: auto 1fr auto;
|
|
203
|
+
|
|
204
|
+
&:not(:has(> #{ $prefix }__image)),
|
|
205
|
+
&--no-image {
|
|
206
|
+
grid-template-rows: 1fr auto;
|
|
207
|
+
}
|
|
208
|
+
|
|
203
209
|
max-width: get("max-width");
|
|
204
210
|
line-height: get("line-height");
|
|
205
211
|
margin-top: get("margin-y");
|
|
@@ -257,6 +263,8 @@ $config: (
|
|
|
257
263
|
min-height: get("footer-min-height");
|
|
258
264
|
justify-content: get("footer-justify");
|
|
259
265
|
background-color: color.get(get("footer-background-color"));
|
|
266
|
+
border-bottom-left-radius: get("border-radius");
|
|
267
|
+
border-bottom-right-radius: get("border-radius");
|
|
260
268
|
}
|
|
261
269
|
#{ $prefix }__aside {
|
|
262
270
|
background-color: color.get(get("aside-background-color"));
|
|
@@ -356,6 +364,8 @@ $config: (
|
|
|
356
364
|
|
|
357
365
|
padding: get("footer-inline-padding");
|
|
358
366
|
flex-direction: column;
|
|
367
|
+
border-top-right-radius: get("border-radius");
|
|
368
|
+
border-bottom-left-radius: 0;
|
|
359
369
|
}
|
|
360
370
|
}
|
|
361
371
|
#{ $prefix }--footer-inline:not(#{ $prefix }--overlay) {
|
|
@@ -580,6 +590,9 @@ $config: (
|
|
|
580
590
|
#{ $prefix }__footer {
|
|
581
591
|
grid-column: 2 / 3;
|
|
582
592
|
}
|
|
593
|
+
#{ $prefix }__footer {
|
|
594
|
+
border-bottom-left-radius: 0;
|
|
595
|
+
}
|
|
583
596
|
#{ $prefix }__body {
|
|
584
597
|
flex-direction: row;
|
|
585
598
|
justify-content: space-between;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ulu/frontend",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.21",
|
|
4
4
|
"description": "A framework-agnostic frontend toolkit providing a modular, tree-shakable library of accessible components and utilities. Designed for seamless integration, it features a highly configurable SCSS system for any environment and vanilla JavaScript modules optimized for traditional websites and content management systems.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|