Skip to content

Commit

Permalink
update: revert buttons rounded values (excluding full rounded)
Browse files Browse the repository at this point in the history
  • Loading branch information
SvMak committed Jan 7, 2025
1 parent 33297d0 commit aaf6987
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/ui/Button.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import SHA from '@/components/ui/SHA.astro';
import Link from '@/components/util/Link.astro';
export const buttonVariants = cva(
'font-bold text-white drop-shadow transition-colors rounded-xl text-center',
'font-bold text-white drop-shadow transition-colors text-center',
{
variants: {
color: {
Expand All @@ -15,10 +15,10 @@ export const buttonVariants = cva(
green: 'bg-nix-green hover:bg-nix-green-hover',
},
size: {
sm: 'px-10 py-2.5',
'sm-mobfull': 'px-8 py-2.5 md:w-auto w-full',
lg: 'px-10 py-2.5 md:px-14 md:py-4 w-full md:w-auto',
'lg-full': 'px-10 py-4 block',
sm: 'px-10 py-2.5 rounded-3xl',
'sm-mobfull': 'px-8 py-2.5 rounded-3xl md:w-auto w-full',
lg: 'px-10 py-2.5 rounded-2xl md:px-14 md:py-4 w-full md:w-auto',
'lg-full': 'px-10 py-4 rounded-2xl block',
},
},
},
Expand Down

0 comments on commit aaf6987

Please sign in to comment.