diff --git a/components/footer-link-list.js b/components/footer-link-list.js index 9cc40af..ed7dc05 100644 --- a/components/footer-link-list.js +++ b/components/footer-link-list.js @@ -29,12 +29,6 @@ class FooterLinks extends HTMLElement { createCss() { return css` - ul { - padding: 0; - margin: 0; - list-style-type: none; - } - ul { display: flex; flex-direction: column; @@ -89,9 +83,6 @@ class FooterLink extends HTMLElement { createCss() { return css` li { - padding: 0; - margin: 0; - list-style-type: none; color: var(--bg-100); font-size: 16px; } diff --git a/components/step.js b/components/step.js index 2244718..3a23379 100644 --- a/components/step.js +++ b/components/step.js @@ -65,11 +65,6 @@ class Step extends BaseStepElement { createCss() { return css` - h3, - ::slotted(p) { - margin: 0; - padding: 0; - } article { width: 100%; height: 400px; diff --git a/global-styles.css b/global-styles.css index 2e0e595..a6a8b63 100644 --- a/global-styles.css +++ b/global-styles.css @@ -62,7 +62,15 @@ h2, h3, h4, h5, -h6 { +h6, +ol, +ul, +li { margin: 0; padding: 0; } + +ol, +ul { + list-style-type: none; +} diff --git a/index.html b/index.html index 51efb3d..66483aa 100644 --- a/index.html +++ b/index.html @@ -37,107 +37,6 @@ - -