Skip to content

Commit

Permalink
fix: use correct css selectors in styles
Browse files Browse the repository at this point in the history
  • Loading branch information
jolars committed May 27, 2024
1 parent 5ee0153 commit 120279e
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ a {
color: white !important;
}

ul,
.publication-list {
ul.publication-list {
/* padding-left: 1rem; */
/* list-style-type: none; /* Remove bullets */
/* padding: 0; /* Remove padding */
Expand All @@ -23,22 +22,19 @@ ul,
display: table;
}

ul,
.publication-list li::before {
ul.publication-list li::before {
content: "•";
display: table-cell;
padding-right: 0.4em;
}

ul,
.publication-list li::after {
ul.publication-list li::after {
content: "";
display: block;
margin-bottom: 0.5em;
}

ul,
.publication-list li {
ul.publication-list li {
display: table-row;
}

Expand Down

0 comments on commit 120279e

Please sign in to comment.