Skip to content

Commit

Permalink
Merge pull request #183 from equalizedigital/feature/menu-and-single-…
Browse files Browse the repository at this point in the history
…post

li
  • Loading branch information
tronsymphony authored Oct 4, 2023
2 parents 9774038 + 8972ab6 commit 70570f3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion assets/css/editor-style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/css/main.css.map

Large diffs are not rendered by default.

15 changes: 7 additions & 8 deletions assets/scss/partials/_editor-class.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,20 +102,19 @@
ul {
list-style: none;
}

ul li::before {
li{
position: relative;
}
li::before {
content: "\2022";
/* Add content: \2022 is the CSS Code/unicode for a bullet */
color: #82BC46;
/* Change the color */
font-weight: bold;
/* If you want it to be bold */
display: inline-block;
/* Needed to add space between the bullet and the text */
width: 1em;
/* Also needed for space (tweak if needed) */
margin-left: -1em;
/* Also needed for space (tweak if needed) */
position: absolute;
top: 0;
left: 0;
}

.link-green a {
Expand Down

0 comments on commit 70570f3

Please sign in to comment.