@dillingerstaffing/strand-vue 0.16.0 → 0.16.1
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/css/strand-ui.css +20 -5
- package/package.json +2 -2
package/dist/css/strand-ui.css
CHANGED
|
@@ -736,12 +736,27 @@ body.strand-banner-active .strand-instrument-viewport--full-bleed {
|
|
|
736
736
|
}
|
|
737
737
|
|
|
738
738
|
/* ── Channel grid helpers ──
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
content
|
|
739
|
+
Equal-height card row with a natural top-to-bottom stack inside each
|
|
740
|
+
card and the final horizontal row (the CTA) anchored to the card's
|
|
741
|
+
bottom edge. Cards in the same row align to the tallest card's
|
|
742
|
+
height; an uneven content mix never produces the ragged-bottom look
|
|
743
|
+
where some cards end tall and others stop short. Useful for channel
|
|
744
|
+
listings, membership grids, and any layout where cards carry a
|
|
745
|
+
primary CTA that must read as the shared affordance across the row. */
|
|
743
746
|
.strand-channel-grid {
|
|
744
|
-
align-items:
|
|
747
|
+
align-items: stretch;
|
|
748
|
+
}
|
|
749
|
+
.strand-channel-grid > .strand-card {
|
|
750
|
+
display: flex;
|
|
751
|
+
flex-direction: column;
|
|
752
|
+
}
|
|
753
|
+
.strand-channel-grid > .strand-card > .strand-stack--vertical {
|
|
754
|
+
flex: 1;
|
|
755
|
+
display: flex;
|
|
756
|
+
flex-direction: column;
|
|
757
|
+
}
|
|
758
|
+
.strand-channel-grid > .strand-card > .strand-stack--vertical > .strand-stack--horizontal:last-child {
|
|
759
|
+
margin-top: auto;
|
|
745
760
|
}
|
|
746
761
|
|
|
747
762
|
.strand-channel-title {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dillingerstaffing/strand-vue",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"description": "Strand UI - Vue 3 component library built on the Strand Design Language",
|
|
5
5
|
"author": "Dillinger Staffing <engineering@dillingerstaffing.com> (https://dillingerstaffing.com)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"vue": "^3.4.0"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@dillingerstaffing/strand": "^0.16.
|
|
56
|
+
"@dillingerstaffing/strand": "^0.16.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@testing-library/jest-dom": "^6.6.0",
|