refactor: simplify list styling

This commit is contained in:
ZanzyTHEbar 2023-01-13 18:32:59 +00:00
parent e27e95e43d
commit 188d6cebc3
2 changed files with 7 additions and 3 deletions

View File

@ -5,7 +5,7 @@ This will contain a list of features that are in progress, completed, and planne
## Completed
<div>
<ul style="list-style: none;">
<ul class="no-style">
<li>
<input type="checkbox" checked>
<label>Tracking algorithm</label>
@ -40,7 +40,7 @@ This will contain a list of features that are in progress, completed, and planne
## In Progress
<div>
<ul style="list-style: none;">
<ul class="no-style">
<li>
<input type="checkbox" unchecked>
<label>Variable eye openness tracking</label>
@ -79,7 +79,7 @@ This will contain a list of features that are in progress, completed, and planne
## Planned
<div>
<ul style="list-style: none;">
<ul class="no-style">
<li>
<input type="checkbox" unchecked>
<label>Support for binary parameters</label>

View File

@ -38,3 +38,7 @@ label {
position: relative;
top: -9px;
}
.no-style {
list-style: none;
}