chore: adjust ProjectCard and tag Badge design

This commit is contained in:
enscribe 2024-12-25 21:08:47 -08:00
parent f42e8eed89
commit 86312d32ee
No known key found for this signature in database
GPG key ID: 9BBD5C4114E25322
9 changed files with 116 additions and 42 deletions

View file

@ -124,6 +124,19 @@
}
}
/* Shadcn-like scrollbar */
pre::-webkit-scrollbar {
@apply h-2.5 w-2.5;
}
pre::-webkit-scrollbar-track {
@apply bg-transparent;
}
pre::-webkit-scrollbar-thumb {
@apply rounded-full bg-border bg-clip-padding p-px;
}
/* Code block styles */
pre {
@apply static max-h-[600px] overflow-auto rounded-xl border bg-secondary/20 py-4 text-sm leading-loose;