Remove normalize

This commit is contained in:
Cory LaViska
2020-07-08 10:20:33 -04:00
parent 0033ef796f
commit 07a12f5f37
3 changed files with 1 additions and 28 deletions

5
package-lock.json generated
View File

@@ -4837,11 +4837,6 @@
}
}
},
"normalize.css": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz",
"integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="
},
"number-is-nan": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz",

View File

@@ -60,7 +60,6 @@
"@stencil/core": "^1.14.0",
"@stencil/sass": "^1.1.1",
"color": "^3.1.2",
"normalize.css": "^8.0.1",
"resize-observer-polyfill": "^1.5.1"
},
"husky": {

View File

@@ -1,6 +1,5 @@
/*! Shoelace */
@import 'normalize.css/normalize';
@import 'mixins/make-color-palette';
:root {
@@ -233,29 +232,9 @@
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Utility
// Internal utility classes
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
.sl-scroll-lock {
overflow: hidden !important;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Base styles
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
body {
font-family: var(--sl-font-sans);
font-weight: var(--sl-font-weight-normal);
font-size: 16px;
}
a {
color: var(--sl-color-primary-50);
text-decoration: none;
}
a:hover {
color: var(--sl-color-primary-60);
text-decoration: underline;
}