@thecb/components 10.6.2-beta.5 → 10.6.2-beta.6
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.cjs.js +94 -627
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +94 -627
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/placeholder/Placeholder.js +1 -2
package/package.json
CHANGED
|
@@ -48,7 +48,7 @@ const renderDisabledContent = ({ children }) => (
|
|
|
48
48
|
const renderContent = ({ isLink, destination, dataQa, children, action }) =>
|
|
49
49
|
isLink ? (
|
|
50
50
|
<Link to={destination} data-qa={dataQa} style={{ textDecoration: "none" }}>
|
|
51
|
-
<Box padding="0
|
|
51
|
+
<Box padding="0" minHeight="100%" extraStyles="cursor: pointer;">
|
|
52
52
|
{children}
|
|
53
53
|
</Box>
|
|
54
54
|
</Link>
|
|
@@ -115,7 +115,6 @@ const Placeholder = ({
|
|
|
115
115
|
display: flex;
|
|
116
116
|
justify-content: center;
|
|
117
117
|
align-items:center;
|
|
118
|
-
margin: 0 2px;
|
|
119
118
|
background-image: repeating-linear-gradient(0deg, ${borderColor}, ${borderColor} 2px, transparent 2px, transparent 4px, ${borderColor} 4px), repeating-linear-gradient(90deg, ${borderColor}, ${borderColor} 2px, transparent 2px, transparent 4px, ${borderColor} 4px), repeating-linear-gradient(180deg, ${borderColor}, ${borderColor} 2px, transparent 2px, transparent 4px, ${borderColor} 4px), repeating-linear-gradient(270deg, ${borderColor}, ${borderColor} 2px, transparent 2px, transparent 4px, ${borderColor} 4px);
|
|
120
119
|
background-size: 2px 100%, 100% 2px, 2px 100% , 100% 2px;
|
|
121
120
|
background-position: 0 0, 0 0, 100% 0, 0 100%;
|