Skip to content

Commit

Permalink
Merge pull request #105 from neo-project/dev
Browse files Browse the repository at this point in the history
Fix list style
  • Loading branch information
apisit authored Apr 23, 2024
2 parents 44863f9 + f987fa2 commit 84cb9ed
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/css/_tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
}
}


@layer base {
html {
@apply text-secondary;
Expand Down Expand Up @@ -44,6 +45,17 @@
.markdown a {
@apply text-primary
}

ul, ol {
list-style: revert;
}
ul {
list-style-position: inside;
}
ul, ol {
margin-left: 20px;
}

}

* {
Expand Down

0 comments on commit 84cb9ed

Please sign in to comment.