diff --git a/src/_components/global/footer.webc b/src/_components/global/footer.webc index 74f6dfe0..056c4374 100644 --- a/src/_components/global/footer.webc +++ b/src/_components/global/footer.webc @@ -10,9 +10,18 @@ width: unset; } } + + .light-only { display: inline; } + .dark-only { display: none; } + picture:has(.light-only) { display: inline; } + picture:has(.dark-only) { display: none; } + [data-theme="dark"] .light-only { display: none; } + [data-theme="dark"] .dark-only { display: inline; } + [data-theme="dark"] picture:has(.light-only) { display: none; } + [data-theme="dark"] picture:has(.dark-only) { display: inline; }