style: reduce clickable background opacity to 0.3

This commit is contained in:
codytseng
2025-10-19 15:21:51 +08:00
parent 666e417a13
commit a847c4dc56

View File

@@ -38,7 +38,7 @@
transition: background-color 0.2s ease;
&:active {
background-color: hsl(var(--muted) / 0.5);
background-color: hsl(var(--muted) / 0.3);
}
}
@@ -60,7 +60,7 @@
@media (hover: hover) and (pointer: fine) {
.clickable:hover {
background-color: hsl(var(--muted) / 0.5);
background-color: hsl(var(--muted) / 0.3);
}
}