@landtrustinc/design-system 1.2.32-beta.0 → 1.2.32
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/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -9066,6 +9066,10 @@ var import_react58 = require("@emotion/react");
|
|
|
9066
9066
|
var cardContainerStyles3 = (orientation, hasContentBackground, hasClickHandler) => import_react58.css`
|
|
9067
9067
|
${hasClickHandler && `
|
|
9068
9068
|
cursor: pointer;
|
|
9069
|
+
|
|
9070
|
+
&:hover {
|
|
9071
|
+
box-shadow: 0 5px 30px 0 rgba(0,0,0,.1);
|
|
9072
|
+
}
|
|
9069
9073
|
`}
|
|
9070
9074
|
|
|
9071
9075
|
color: var(--text-primary);
|
|
@@ -9088,6 +9092,12 @@ var cardContainerStyles3 = (orientation, hasContentBackground, hasClickHandler)
|
|
|
9088
9092
|
gap: var(--spacing-4);
|
|
9089
9093
|
box-shadow: 0 0 var(--shadow-blur-lg, 24px) var(--shadow-spread-xs, -4px)
|
|
9090
9094
|
rgba(17, 17, 17, 0.1);
|
|
9095
|
+
|
|
9096
|
+
${hasClickHandler && `
|
|
9097
|
+
&:hover {
|
|
9098
|
+
box-shadow: 0 5px 30px 0 rgba(0,0,0,.1);
|
|
9099
|
+
}
|
|
9100
|
+
`}
|
|
9091
9101
|
}
|
|
9092
9102
|
`}
|
|
9093
9103
|
|