diff options
| author | Fuwn <[email protected]> | 2024-01-04 07:56:56 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-01-04 07:56:56 -0800 |
| commit | 0a5da5dc49bf8e084697f930c5a7568965480579 (patch) | |
| tree | 447403f7c07f415c3ad01ebd130faf6289eb5ee4 /src/app.css | |
| parent | feat(cover): better defaults (diff) | |
| download | due.moe-0a5da5dc49bf8e084697f930c5a7568965480579.tar.xz due.moe-0a5da5dc49bf8e084697f930c5a7568965480579.zip | |
feat(css): different check style
Diffstat (limited to 'src/app.css')
| -rw-r--r-- | src/app.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/app.css b/src/app.css index f6b051d7..9d54f143 100644 --- a/src/app.css +++ b/src/app.css @@ -35,6 +35,11 @@ input[type='checkbox'] { margin: 0; width: 1.15em; height: 1.15em; + transition: background-color 0.15s ease-in-out; +} + +input[type='checkbox']:checked { + background-color: var(--base0B); } input[type='checkbox']:checked:before { @@ -42,6 +47,4 @@ input[type='checkbox']:checked:before { top: 50%; left: 50%; transform: translate(-50%, -50%); - content: '†'; - color: black; } |