Skip to content

Commit

Permalink
fix archive list dividers
Browse files Browse the repository at this point in the history
  • Loading branch information
vorant94 committed May 5, 2024
1 parent b52ac4b commit 7484a9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/blog/src/ui/components/ArchiveList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const ArchiveList: FC<PropsWithChildren<ArchiveListProps>> = function ({
)}
<menu
className={cn(
'flex flex-col divide-y divide-dashed border-slate-300 dark:border-slate-600',
'flex flex-col divide-y divide-dashed divide-slate-300 dark:divide-slate-600',
)}>
{children}
</menu>
Expand Down
2 changes: 1 addition & 1 deletion packages/blog/src/ui/components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export interface ButtonProps extends ComponentPropsWithoutRef<'button'> {

export const buttonVariants = ['default', 'outlined'] as const;
export type ButtonVariant = (typeof buttonVariants)[number];
export const buttonVariantToStyles = {
const buttonVariantToStyles = {
outlined:
'border rounded-2xl hover:outline outline-cyan-500 hover:border-cyan-500',
default: '',
Expand Down

0 comments on commit 7484a9b

Please sign in to comment.