Skip to content

Commit

Permalink
style: update global styles
Browse files Browse the repository at this point in the history
  • Loading branch information
sounmind committed Jul 16, 2024
1 parent 0094299 commit 5bbc42d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
9 changes: 0 additions & 9 deletions components/footer-link-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
}
Expand Down
5 changes: 0 additions & 5 deletions components/step.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,6 @@ class Step extends BaseStepElement {

createCss() {
return css`
h3,
::slotted(p) {
margin: 0;
padding: 0;
}
article {
width: 100%;
height: 400px;
Expand Down
10 changes: 9 additions & 1 deletion global-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,15 @@ h2,
h3,
h4,
h5,
h6 {
h6,
ol,
ul,
li {
margin: 0;
padding: 0;
}

ol,
ul {
list-style-type: none;
}

0 comments on commit 5bbc42d

Please sign in to comment.