diff options
Diffstat (limited to 'src/components/List.vue')
| -rw-r--r-- | src/components/List.vue | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/components/List.vue b/src/components/List.vue index 031f708..843370e 100644 --- a/src/components/List.vue +++ b/src/components/List.vue @@ -28,7 +28,6 @@ export default { } .list-item { - border: 1px solid grey; border-radius: 5px; margin: 5px 0; padding: 0.15em; @@ -38,4 +37,11 @@ export default { .list-item:hover { background-color: rgb(182, 182, 182); } + +@media (prefers-color-scheme: dark) { + .list-item { + background-color: #303030; + color: white; + } +} </style> |
