aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/components/Skeleton.css
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/components/Skeleton.css')
-rw-r--r--FrontEnd/src/components/Skeleton.css10
1 files changed, 8 insertions, 2 deletions
diff --git a/FrontEnd/src/components/Skeleton.css b/FrontEnd/src/components/Skeleton.css
index a571eead..0f78d3b5 100644
--- a/FrontEnd/src/components/Skeleton.css
+++ b/FrontEnd/src/components/Skeleton.css
@@ -4,11 +4,17 @@
.cru-skeleton-line {
height: 1em;
- background-color: hsl(0, 0%, 90%);
+ background-color: hsl(0 0% 90%);
margin: 0.7em 0;
border-radius: 0.2em;
}
-.cru-skeleton-line.last {
+@media (prefers-color-scheme: dark) {
+ .cru-skeleton-line {
+ background-color: hsl(0 0% 20%);
+ }
+}
+
+.cru-skeleton-line:last-child {
width: 50%;
}