@harnessio/ui 0.0.268 → 0.0.270
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/components.js +1 -1
- package/dist/{index-DZy-ZB3D.js → index-D8QXsBgW.js} +2 -2
- package/dist/{index-DZy-ZB3D.js.map → index-D8QXsBgW.js.map} +1 -1
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind.config.js +9 -2
- package/dist/tailwind.config.js.map +1 -1
- package/package.json +2 -2
package/dist/tailwind.config.js
CHANGED
|
@@ -3279,10 +3279,17 @@ const Pe = {
|
|
|
3279
3279
|
borderTop: "1px solid var(--cn-border-2)",
|
|
3280
3280
|
backgroundColor: "var(--cn-comp-pipeline-card-footer)",
|
|
3281
3281
|
"@apply flex flex-col justify-center px-cn-md py-cn-md font-caption-normal": "",
|
|
3282
|
-
//
|
|
3282
|
+
// Default: line-clamp-4 for regular cards
|
|
3283
|
+
"& span": {
|
|
3284
|
+
"@apply line-clamp-4": ""
|
|
3285
|
+
},
|
|
3286
|
+
// Group card variant - adjust padding and line-clamp
|
|
3283
3287
|
".cn-studio-card-group > &": {
|
|
3284
3288
|
minHeight: "var(--cn-size-13)",
|
|
3285
|
-
"@apply py-cn-md": ""
|
|
3289
|
+
"@apply py-cn-md": "",
|
|
3290
|
+
"& span": {
|
|
3291
|
+
"@apply line-clamp-2": ""
|
|
3292
|
+
}
|
|
3286
3293
|
}
|
|
3287
3294
|
},
|
|
3288
3295
|
".cn-studio-card-expand-button-main, .cn-studio-card-button": {
|