summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-10 19:06:50 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-10 19:06:50 +1000
commit7a0c4fe6b43d87b069f7ac218374227778f564bb (patch)
treeeb065779f43e59f3e5803a81a15b334ec6d70053 /scss
parentconfig: limit news param types (diff)
downloadcaelestia-shell-7a0c4fe6b43d87b069f7ac218374227778f564bb.tar.gz
caelestia-shell-7a0c4fe6b43d87b069f7ac218374227778f564bb.tar.bz2
caelestia-shell-7a0c4fe6b43d87b069f7ac218374227778f564bb.zip
sidebar: dashboard current desktop -> date
Put date instead of current desktop on dashboard Date is more useful imo (especially for vertical bar)
Diffstat (limited to 'scss')
-rw-r--r--scss/sidebar.scss8
1 files changed, 5 insertions, 3 deletions
diff --git a/scss/sidebar.scss b/scss/sidebar.scss
index 3f07678..1730f82 100644
--- a/scss/sidebar.scss
+++ b/scss/sidebar.scss
@@ -156,7 +156,6 @@
.details {
font-size: lib.s(14);
- color: scheme.$yellow;
@include lib.spacing(8, true);
@@ -166,8 +165,11 @@
margin-bottom: lib.s(10);
}
- .uptime {
- color: scheme.$blue;
+ $-colours: scheme.$yellow, scheme.$blue;
+ @for $i from 1 through list.length($-colours) {
+ :nth-child(#{$i + 1}) {
+ color: list.nth($-colours, $i);
+ }
}
}
}