fix: unify card styles across the project

- Set --bento-radius to 16px (was 24px) for more modern look
- Unified .card, .bento-card and Card component to use same:
  - border-radius: var(--bento-radius)
  - border: border-dark-700/40
  - background: bg-dark-900/70
  - inset shadow for glass effect
- Reduced padding from 24px to 20px
This commit is contained in:
c0mrade
2026-02-01 22:07:54 +03:00
parent 2926a5a89c
commit 4a25d8df03
2 changed files with 15 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ const cardVariants = cva(
[
'relative overflow-hidden',
'border border-dark-700/40 bg-dark-900/70',
'rounded-linear-lg',
'rounded-[var(--bento-radius)]',
'transition-all duration-200',
// GPU acceleration
'transform-gpu',