@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thecb/components",
3
- "version": "10.6.2-beta.5",
3
+ "version": "10.6.2-beta.6",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -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 2px" minHeight="100%" extraStyles="cursor: pointer;">
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%;