Skip to content

Commit

Permalink
add padding for list css
Browse files Browse the repository at this point in the history
Signed-off-by: David Luhmer <david-dev@live.de>
  • Loading branch information
David-Development committed Oct 10, 2024
1 parent ce6b0c4 commit 2239bc8
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions News-Android-App/src/main/assets/web.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,22 @@ a {
color: #ffffff !important;
}

ul {
/* We use custom list style / use 0 padding for first level of lists */
ul, ol {
list-style: none;
padding: 0;
padding: 0px;
}

ul li:before {
/* Nested lists should be indented a little */
ul li ul,
ul li ol,
ol li ul,
ol li ol {
padding: 0px 0px 0px 12px;
}


ul li:before, ol li:before {
vertical-align: 18%;
margin-right:10px;
border-style: solid;
Expand Down

0 comments on commit 2239bc8

Please sign in to comment.