@thecb/components 10.6.2-beta.3 → 10.6.2-beta.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "10.6.2-beta.3",
3
+ "version": "10.6.2-beta.5",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -55,7 +55,7 @@ const renderContent = ({ isLink, destination, dataQa, children, action }) =>
55
55
  ) : (
56
56
  <Box
57
57
  onClick={action}
58
- padding="0 2px"
58
+ padding="0"
59
59
  minHeight="100%"
60
60
  extraStyles="cursor: pointer;"
61
61
  dataQa={dataQa}
@@ -115,6 +115,7 @@ const Placeholder = ({
115
115
  display: flex;
116
116
  justify-content: center;
117
117
  align-items:center;
118
+ margin: 0 2px;
118
119
  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);
119
120
  background-size: 2px 100%, 100% 2px, 2px 100% , 100% 2px;
120
121
  background-position: 0 0, 0 0, 100% 0, 0 100%;