fix(theme): incorrect task list style in mobile, close #247 (#252)

This commit is contained in:
pengzhanbo 2024-10-03 09:27:29 +08:00 committed by GitHub
parent 6fac619031
commit 5509bf460c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -154,7 +154,14 @@
list-style: none;
}
.vp-doc .task-list-container .task-list-item {
position: relative;
}
.vp-doc .task-list-container .task-list-item input {
position: absolute;
top: 0;
left: 0;
width: 0;
height: 0;
padding: 0;
@ -174,7 +181,7 @@
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
transform: translateY(2px);
transform: translateY(4px);
}