@vuu-ui/vuu-theme 3.3.17 → 4.0.0-alpha.10

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.
@@ -26,7 +26,7 @@
26
26
  .salt-theme.vuu-theme {
27
27
  .vuuAppHeader {
28
28
  border-radius: 8px;
29
- margin-bottom: 8px;
29
+ margin: 8px 8px 8px 0;
30
30
  }
31
31
 
32
32
  }
@@ -12,9 +12,10 @@
12
12
  border-radius: 0 0 6px 6px;
13
13
  padding: 31px 0 0 0;
14
14
 
15
- & > .vuuTabs-tabPanel {
16
- border: solid 1px var(--salt-separable-primary-borderColor);
17
- border-top: none !important;
15
+ .vuuWorkspaceHost-content {
16
+ border-style: none solid solid solid;
17
+ border-width: 1px;
18
+ border-color: var(--salt-separable-primary-borderColor);
18
19
  border-radius: 0 0 6px 6px;
19
20
  padding: 0 8px 8px 8px;
20
21
  }
@@ -1,7 +1,6 @@
1
1
  .salt-theme.vuu-theme {
2
-
3
2
  --vuu-color-coral: rgb(243, 120, 128);
4
- --vuu-color-coral-lightest: rgba(243, 120, 128, .2);
3
+ --vuu-color-coral-lightest: rgba(243, 120, 128, 0.2);
5
4
  --vuu-color-gray-10: rgb(241, 242, 244);
6
5
  --vuu-color-gray-15: rgb(228, 227, 231);
7
6
  --vuu-color-gray-20: rgb(214, 215, 218);
@@ -9,12 +8,11 @@
9
8
  --vuu-color-gray-30: rgb(119, 124, 148);
10
9
  --vuu-color-gray-40: rgb(96, 100, 119);
11
10
  --vuu-color-gray-50: rgb(21, 23, 27);
12
- --vuu-color-red-error: rgb(226,52,52);
11
+ --vuu-color-red-error: rgb(226, 52, 52);
13
12
  --vuu-color-purple: rgb(109, 24, 189);
14
13
  --vuu-color-deep-purple: rgb(42, 1, 95);
15
- --vuu-color-white: rgb(255,255,255);
14
+ --vuu-color-white: rgb(255, 255, 255);
16
15
 
17
-
18
16
  --salt-color-gray-100-rgb: 230, 233, 235;
19
17
  --salt-color-gray-200-rgb: 211, 213, 216;
20
18
  --salt-color-gray-300-rgb: 177, 181, 185;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "3.3.17",
2
+ "version": "4.0.0-alpha.10",
3
3
  "license": "Apache-2.0",
4
4
  "type": "module",
5
5
  "scripts": {
@@ -7,6 +7,7 @@
7
7
  },
8
8
  "files": [
9
9
  "index.css",
10
+ "reset.css",
10
11
  "NunitoSans.css",
11
12
  "css",
12
13
  "fonts",
@@ -19,6 +20,9 @@
19
20
  },
20
21
  "./style": {
21
22
  "import": "./index.css"
23
+ },
24
+ "./index.css": {
25
+ "import": "./index.css"
22
26
  }
23
27
  },
24
28
  "main": "./src/index.js",
package/reset.css ADDED
@@ -0,0 +1,12 @@
1
+ /* Setting every element's box-sizing to border-box ensures the declared width
2
+ of the element is never exceeded due to padding or border. */
3
+ *,
4
+ *::before,
5
+ *::after {
6
+ box-sizing: border-box;
7
+ }
8
+
9
+ body {
10
+ margin: 0;
11
+ }
12
+