Skip to content

Commit

Permalink
Tweaks to buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
james-beston committed Mar 28, 2024
1 parent b895ec9 commit 0bbf8c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/shared/buttons/std-buttons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ type Props = Omit<React.ComponentProps<"button">, "className"> & {
autoFocus?: boolean;
};

const sharedClasses = ' font-semibold text-white shadow-sm focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-calibre-pink-500 transition ease-in-out duration-150'
const ableClasses = 'bg-calibre-pink-500 hover:bg-calibre-pink-600'
const disabledClasses = 'bg-calibre-slate-300 text-calibre-slate-500 shadow-none cursor-not-allowed'
const sharedClasses = ' font-semibold text-white shadow-sm focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-pink-500 transition ease-in-out duration-150'
const ableClasses = 'bg-indigo-600 hover:bg-indigo-700'
const disabledClasses = 'bg-slate-300 dark:bg-slate-400 shadow-none cursor-not-allowed'

const xSmallButton = React.forwardRef<HTMLButtonElement, Props>(
({
Expand Down

0 comments on commit 0bbf8c0

Please sign in to comment.