@classic-homes/theme-docs 0.0.13 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -114,13 +114,13 @@
|
|
|
114
114
|
|
|
115
115
|
// Top-level items (h2) are more prominent
|
|
116
116
|
if (level <= 2) {
|
|
117
|
-
return cn(baseStyles, 'text-foreground/80 hover:text-foreground hover:bg-muted
|
|
117
|
+
return cn(baseStyles, 'text-foreground/80 hover:text-foreground hover:bg-muted-hover');
|
|
118
118
|
}
|
|
119
119
|
|
|
120
120
|
// Deeper levels are more subdued
|
|
121
121
|
return cn(
|
|
122
122
|
baseStyles,
|
|
123
|
-
'text-muted-foreground text-[12px] hover:text-foreground hover:bg-muted
|
|
123
|
+
'text-muted-foreground text-[12px] hover:text-foreground hover:bg-muted-hover'
|
|
124
124
|
);
|
|
125
125
|
}
|
|
126
126
|
|