@bgord/design 0.27.8 → 0.27.9
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/dist/normalize.css
CHANGED
|
@@ -19,7 +19,9 @@ html {
|
|
|
19
19
|
* 3. Remove padding/margin by default.
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
*,
|
|
23
|
+
*::before,
|
|
24
|
+
*::after {
|
|
23
25
|
-webkit-box-sizing: border-box;
|
|
24
26
|
box-sizing: border-box; /* 1 */
|
|
25
27
|
line-height: 24px; /* 2 */
|
|
@@ -34,10 +36,13 @@ html {
|
|
|
34
36
|
* Remove the margin in all browsers, and sans-serif as the default font-family.
|
|
35
37
|
*/
|
|
36
38
|
|
|
39
|
+
html,
|
|
37
40
|
body {
|
|
38
41
|
margin: 0;
|
|
39
42
|
font-family: sans-serif;
|
|
40
43
|
font-size: 16px;
|
|
44
|
+
height: 100%; /* Allow percentage-based heights in the application */
|
|
45
|
+
-webkit-font-smoothing: antialiased;
|
|
41
46
|
}
|
|
42
47
|
|
|
43
48
|
/**
|
package/dist/normalize.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}
|
|
1
|
+
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}*,::after,::before{-webkit-box-sizing:border-box;box-sizing:border-box;line-height:24px;padding:0;margin:0}body,html{margin:0;font-family:sans-serif;font-size:16px;height:100%;-webkit-font-smoothing:antialiased}main{display:block}h1{font-size:2em;margin:0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{display:block;font-size:12px}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;appearance:none;margin:0}input[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
package/src/normalize.css
CHANGED
|
@@ -19,7 +19,9 @@ html {
|
|
|
19
19
|
* 3. Remove padding/margin by default.
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
*,
|
|
23
|
+
*::before,
|
|
24
|
+
*::after {
|
|
23
25
|
box-sizing: border-box; /* 1 */
|
|
24
26
|
line-height: 24px; /* 2 */
|
|
25
27
|
padding: 0; /* 3 */
|
|
@@ -33,10 +35,13 @@ html {
|
|
|
33
35
|
* Remove the margin in all browsers, and sans-serif as the default font-family.
|
|
34
36
|
*/
|
|
35
37
|
|
|
38
|
+
html,
|
|
36
39
|
body {
|
|
37
40
|
margin: 0;
|
|
38
41
|
font-family: sans-serif;
|
|
39
42
|
font-size: 16px;
|
|
43
|
+
height: 100%; /* Allow percentage-based heights in the application */
|
|
44
|
+
-webkit-font-smoothing: antialiased;
|
|
40
45
|
}
|
|
41
46
|
|
|
42
47
|
/**
|