Skip to content

Commit

Permalink
scrollbar fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniopelusi committed Jan 25, 2025
1 parent 9247f57 commit 04f27f0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions assets/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ body {

.checklist-item {
display: flex;
align-items: center;
width: 100%;
height: 40px;
align-items: center;
justify-content: center;
}

Expand All @@ -220,11 +220,13 @@ body {
align-items: center;
justify-content: left;
width: 100%;
height: 40px;
max-width: 30vw;
min-width: 20px;
overflow-x: scroll;
min-height: 40px;
white-space: nowrap;
box-sizing: border-box;
scrollbar-width: none;
}

.checklist-item input[type="checkbox"] {
Expand Down Expand Up @@ -252,6 +254,9 @@ body {

.checklist-item span {
margin-left: 10px;
font-size: 16px;
display: flex;
align-items: center;
}

.checklist-item.completed input[type="checkbox"]:checked {
Expand Down

0 comments on commit 04f27f0

Please sign in to comment.