Skip to content

Commit

Permalink
Add items-center to Button component (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
AVGVSTVS96 authored Mar 8, 2024
1 parent 2222c79 commit 5c6d179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/subComponents/Button.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const {
...attrs
} = Astro.props;
const baseStyles: string = `transition-colors flex max-w-max rounded-lg px-3 py-2 font-normal duration-200 hover:bg-primary-200 hover:text-opacity-100 dark:hover:bg-primary-800`;
const baseStyles: string = `transition-colors items-center flex max-w-max rounded-lg px-3 py-2 font-normal duration-200 hover:bg-primary-200 hover:text-opacity-100 dark:hover:bg-primary-800`;
const variableStyles: (string | undefined)[] = [
className,
Expand Down

0 comments on commit 5c6d179

Please sign in to comment.