@ulu/frontend 0.6.26 → 0.6.28
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.
|
@@ -362,13 +362,19 @@ $config: (
|
|
|
362
362
|
|
|
363
363
|
#{ $prefix }--footer-inline {
|
|
364
364
|
#{ $prefix }__footer {
|
|
365
|
-
|
|
366
365
|
padding: get("footer-inline-padding");
|
|
367
366
|
flex-direction: column;
|
|
368
|
-
border-top-right-radius: get("border-radius");
|
|
369
367
|
border-bottom-left-radius: 0;
|
|
370
368
|
}
|
|
371
369
|
}
|
|
370
|
+
// Only add the top-right radius to the footer if there is no image.
|
|
371
|
+
// When an image is present, it occupies the top row, meaning the footer
|
|
372
|
+
// sits below it and shouldn't be rounded on the top-right.
|
|
373
|
+
#{ $prefix }--footer-inline:not(:has(> #{ $prefix }__image)) {
|
|
374
|
+
#{ $prefix }__footer {
|
|
375
|
+
border-top-right-radius: get("border-radius");
|
|
376
|
+
}
|
|
377
|
+
}
|
|
372
378
|
#{ $prefix }--footer-inline:not(#{ $prefix }--overlay) {
|
|
373
379
|
// The second column (footer) collapses if unused
|
|
374
380
|
grid-template-columns: 1fr auto;
|
|
@@ -84,10 +84,13 @@ $config: (
|
|
|
84
84
|
|
|
85
85
|
#{ $selector } {
|
|
86
86
|
margin: get("margin");
|
|
87
|
-
counter-reset: ulu-counter-list;
|
|
87
|
+
counter-reset: ulu-counter-list var(--ulu-counter-list-start, 0);
|
|
88
88
|
}
|
|
89
89
|
|
|
90
90
|
#{ $selector-item } {
|
|
91
|
+
// In case there are lists within (since we're using common var name)
|
|
92
|
+
--ulu-counter-list-start: 0;
|
|
93
|
+
|
|
91
94
|
$width: get("counter-width");
|
|
92
95
|
$height: utils.fallback(get("counter-height"), $width);
|
|
93
96
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ulu/frontend",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.28",
|
|
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": [
|