diff options
Diffstat (limited to 'src')
| -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; } |