devel #331

Merged
inhji merged 4 commits from devel into main 2023-09-21 13:25:19 +02:00
2 changed files with 4 additions and 3 deletions

View file

@ -56,10 +56,10 @@
} }
& a { & a {
@apply p-3 rounded hover:bg-primary-700 transition; @apply p-3 rounded hover:bg-neutral-700 transition;
&.active { &.active {
@apply bg-primary-700; @apply bg-neutral-700;
} }
} }
} }
@ -69,6 +69,7 @@
#primary-sidebar { #primary-sidebar {
@apply col-span-1; @apply col-span-1;
@apply prose-a:no-underline; @apply prose-a:no-underline;
@apply hover:prose-a:text-primary-600;
& nav { & nav {
@apply flex md:flex-row lg:flex-col mb-6 lg:mb-0; @apply flex md:flex-row lg:flex-col mb-6 lg:mb-0;

View file

@ -17,7 +17,7 @@ module.exports = {
container: { center: true }, container: { center: true },
extend: { extend: {
colors: { colors: {
primary: colors.rose, primary: colors.blue,
neutral: colors.slate, neutral: colors.slate,
foreground: 'rgb(var(--color-foreground) / <alpha-value>)', foreground: 'rgb(var(--color-foreground) / <alpha-value>)',
background: 'rgb(var(--color-background) / <alpha-value>)' background: 'rgb(var(--color-background) / <alpha-value>)'