@vuu-ui/vuu-theme 4.0.0-alpha.7 → 4.0.0-alpha.8

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.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/reset.css +12 -0
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "4.0.0-alpha.7",
2
+ "version": "4.0.0-alpha.8",
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",
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
+