Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion components/Pagination/PaginationButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function PaginationButton({
}: PaginationButtonProps) {
return (
<button
className={`${className} flex size-[45px] items-center justify-center rounded-custom bg-background text-18 text-gray-400 shadow-custom dark:shadow-custom-dark mo:size-[40px]`}
className={`${className} scaleStyle flex size-[45px] items-center justify-center rounded-custom bg-background text-18 text-gray-400 shadow-custom dark:shadow-custom-dark mo:size-[40px]`}
onClick={onClick}
disabled={disabled}
>
Expand Down
5 changes: 5 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -182,3 +182,8 @@ body {
--pos2: 503px;
}
}

/* 인터랙션 공통 스타일 */
.scaleStyle {
@apply transition-all hover:scale-[1.02] hover:bg-gray-100 hover:shadow-xl;
}
Loading