@thecb/components 8.4.0-beta.20 → 8.4.0-beta.21

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": "8.4.0-beta.20",
3
+ "version": "8.4.0-beta.21",
4
4
  "description": "Common lib for CityBase react components",
5
5
  "main": "dist/index.cjs.js",
6
6
  "typings": "dist/index.d.ts",
@@ -3,7 +3,11 @@ import Heading from "../../atoms/heading";
3
3
  import Paragraph from "../../atoms/paragraph";
4
4
  import Stack from "../../atoms/layouts/Stack";
5
5
  import { Box } from "../../atoms/layouts";
6
- import { ROYAL_BLUE_VIVID } from "../../../constants/colors";
6
+ import {
7
+ ROYAL_BLUE_VIVID,
8
+ LINK_WATER,
9
+ MOON_RAKER
10
+ } from "../../../constants/colors";
7
11
 
8
12
  export const Container = styled(Box)`
9
13
  display: flex;
@@ -17,7 +21,6 @@ export const Container = styled(Box)`
17
21
 
18
22
  &:hover,
19
23
  &:active {
20
- margin-top: 2px;
21
24
  cursor: pointer;
22
25
  box-shadow: 0px 0px 0px 0px rgba(41, 42, 51, 0.1),
23
26
  0px 5px 11px 0px rgba(41, 42, 51, 0.1),
@@ -28,7 +31,8 @@ export const Container = styled(Box)`
28
31
  }
29
32
 
30
33
  &:hover:not(:active) {
31
- border: 0;
34
+ border: 1px solid ${MOON_RAKER};
35
+ background-color: ${LINK_WATER};
32
36
  }
33
37
 
34
38
  &:active {