@ulu/frontend 0.6.20 → 0.6.22
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 +267 -267
- package/dist/umd/frontend.css +1 -1
- package/lib/scss/components/_card.scss +11 -1
- package/package.json +1 -1
|
@@ -139,7 +139,7 @@ $config: (
|
|
|
139
139
|
"footer-min-height": 2.5rem,
|
|
140
140
|
"footer-justify": flex-end,
|
|
141
141
|
"footer-inline-padding": 0.5rem,
|
|
142
|
-
"footer-background-color":
|
|
142
|
+
"footer-background-color": null,
|
|
143
143
|
|
|
144
144
|
// Horizontal
|
|
145
145
|
"horizontal-enabled" : false,
|
|
@@ -200,6 +200,9 @@ $config: (
|
|
|
200
200
|
display: grid;
|
|
201
201
|
grid-template-columns: 1fr;
|
|
202
202
|
grid-template-rows: auto 1fr auto;
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
203
206
|
max-width: get("max-width");
|
|
204
207
|
line-height: get("line-height");
|
|
205
208
|
margin-top: get("margin-y");
|
|
@@ -215,6 +218,13 @@ $config: (
|
|
|
215
218
|
outline-offset: $border-width-negative;
|
|
216
219
|
}
|
|
217
220
|
|
|
221
|
+
// Remove extra row when image is not present
|
|
222
|
+
// - So footer doesn't fall on the 1fr row
|
|
223
|
+
#{ $prefix }:not(:has(> #{ $prefix }__image)),
|
|
224
|
+
#{ $prefix }--no-image {
|
|
225
|
+
grid-template-rows: 1fr auto;
|
|
226
|
+
}
|
|
227
|
+
|
|
218
228
|
@if (get("box-shadow-interactive-only") and get("box-shadow")) {
|
|
219
229
|
@include when-clickable() {
|
|
220
230
|
box-shadow: get("box-shadow");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ulu/frontend",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.22",
|
|
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": [
|