From 89d78ca685e4fcaa6e68ce05f9440e41ab32e7aa Mon Sep 17 00:00:00 2001 From: sounmind Date: Mon, 15 Jul 2024 23:34:12 -0400 Subject: [PATCH 1/2] chore: remove unused styles --- index.html | 101 ----------------------------------------------------- 1 file changed, 101 deletions(-) diff --git a/index.html b/index.html index 51efb3d..66483aa 100644 --- a/index.html +++ b/index.html @@ -37,107 +37,6 @@ - - From bc6afab447c00a317d7fe29d65156953d70a5422 Mon Sep 17 00:00:00 2001 From: sounmind Date: Tue, 16 Jul 2024 00:09:16 -0400 Subject: [PATCH 2/2] style: update global styles --- components/footer-link-list.js | 9 --------- components/step.js | 5 ----- global-styles.css | 10 +++++++++- 3 files changed, 9 insertions(+), 15 deletions(-) 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; +}