@ulu/frontend 0.6.21 → 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 +266 -266
- package/dist/umd/frontend.css +1 -1
- package/lib/scss/components/_card.scss +8 -4
- package/package.json +1 -1
|
@@ -201,10 +201,7 @@ $config: (
|
|
|
201
201
|
grid-template-columns: 1fr;
|
|
202
202
|
grid-template-rows: auto 1fr auto;
|
|
203
203
|
|
|
204
|
-
|
|
205
|
-
&--no-image {
|
|
206
|
-
grid-template-rows: 1fr auto;
|
|
207
|
-
}
|
|
204
|
+
|
|
208
205
|
|
|
209
206
|
max-width: get("max-width");
|
|
210
207
|
line-height: get("line-height");
|
|
@@ -221,6 +218,13 @@ $config: (
|
|
|
221
218
|
outline-offset: $border-width-negative;
|
|
222
219
|
}
|
|
223
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
|
+
|
|
224
228
|
@if (get("box-shadow-interactive-only") and get("box-shadow")) {
|
|
225
229
|
@include when-clickable() {
|
|
226
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": [
|