Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typo correction index.tsx #1584

Merged
merged 1 commit into from
Jan 25, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/web/src/components/base-org/Button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const variantStyles: Record<ButtonVariants, string> = {
[ButtonVariants.Primary]:
'bg-blue text-white border border-blue hover:bg-blue-80 active:bg-[#06318E]',

// White buton
// White button
[ButtonVariants.Secondary]:
'bg-white border border-white text-palette-foreground hover:bg-gray-15 active:bg-gray-30',

Expand All @@ -32,15 +32,15 @@ const sizeStyles: Record<ButtonSizes, string> = {
// Blue button
[ButtonSizes.Medium]: 'text-md px-4 py-2 gap-3',

// White buton
// White button
[ButtonSizes.Large]: 'text-lg px-6 py-4 gap-5',
};

const sizeIconRatio: Record<ButtonSizes, string> = {
// Blue button
[ButtonSizes.Medium]: '0.75rem',

// White buton
// White button
[ButtonSizes.Large]: '1rem',
};

Expand Down
Loading