hart-estate-widget 0.0.2 → 0.0.3

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.
@@ -18,7 +18,7 @@
18
18
  align-items: flex-start
19
19
  justify-content: flex-start
20
20
  background-color: $white
21
- box-shadow: 1px 1px 10px rgb(0 0 0 / 50%)
21
+ box-shadow: 1px 1px 10px rgba(0, 0, 0, .5)
22
22
  border-radius: 5px
23
23
  overflow: hidden
24
24
  width: 350px
@@ -91,7 +91,7 @@
91
91
  top: 0
92
92
  width: 100%
93
93
  height: 100%
94
- box-shadow: inset 1px 1px 10px rgb(0 0 0 / 30%)
94
+ box-shadow: inset 1px 1px 10px rgba(0, 0, 0, .3)
95
95
  &--active,
96
96
  &:hover
97
97
  border-color: $mainColor
@@ -39,7 +39,7 @@ html, body
39
39
  border: none
40
40
  cursor: pointer
41
41
  &:hover
42
- box-shadow: 1px 1px 10px rgb(0 0 0 / 15%)
42
+ box-shadow: 1px 1px 10px rgba(0, 0, 0, .15)
43
43
 
44
44
  @import './components/tabs'
45
45
  @import './components/instructions'
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "HART Estate widget",
4
4
  "author": "HART",
5
5
  "keywords": ["react", "hart", "widget", "estate"],
6
- "version": "0.0.2",
6
+ "version": "0.0.3",
7
7
  "private": false,
8
8
  "main": "build/index.js",
9
9
  "module": "build/index.js",
@@ -14,9 +14,7 @@
14
14
  },
15
15
  "scripts": {
16
16
  "start": "node scripts/start.js",
17
- "build": "rm -rf build && NODE_ENV=production babel src --out-dir build --copy-files",
18
- "test": "react-scripts test",
19
- "eject": "react-scripts eject"
17
+ "build": "rm -rf build && NODE_ENV=production babel src --out-dir build --copy-files"
20
18
  },
21
19
  "dependencies": {
22
20
  "@babel/polyfill": "^7.12.1",