Skip to content

Commit 32e36d7

Browse files
committed
adjusted pencil and trash sizes
1 parent 17b8d6e commit 32e36d7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/components/ListItem.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export function ListItem({
117117
<Dialog open={isOpen} onOpenChange={() => handleOpenModal(id)}>
118118
<DialogTrigger asChild>
119119
<Button className="bg-transparent hover:bg-transparent p-0">
120-
<Pencil className="w-5 h-5 md:w-6 md:h-6 text-light-grey hover:text-opacity-75 dark:text-emerald-500 dark:hover:text-opacity-80 transform hover:scale-110 transition-transform duration-150 sm:hover:scale-125" />
120+
<Pencil className="w-5 h-5 text-light-grey hover:text-opacity-75 dark:text-emerald-500 dark:hover:text-opacity-80 transform hover:scale-110 transition-transform duration-150 sm:hover:scale-125" />
121121
</Button>
122122
</DialogTrigger>
123123
<DialogContent>
@@ -146,7 +146,7 @@ export function ListItem({
146146
id={id}
147147
onClick={() => setIsAlertOpen(true)}
148148
>
149-
<Trash2 className="w-5 h-5 md:w-6 md:h-6 text-gray-600 hover:text-opacity-75 dark:text-emerald-500 dark:hover:text-opacity-80 transform hover:scale-110 transition-transform duration-150 sm:hover:scale-125" />
149+
<Trash2 className="w-5 h-5 text-gray-600 hover:text-opacity-75 dark:text-emerald-500 dark:hover:text-opacity-80 transform hover:scale-110 transition-transform duration-150 sm:hover:scale-125" />
150150
</Button>
151151
</AlertDialogTrigger>
152152
<AlertDialogContent className="p-6 sm:p-10">

src/components/SingleList.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export function SingleList({
8989
aria-label="Share list"
9090
className="text-green-500 hover:text-green-500 dark:text-ruby-pink dark:hover:text-primary-pink hover:text-opacity-80 dark:hover:text-opacity-80 transform hover:scale-110 transition-transform duration-150 sm:hover:scale-125"
9191
>
92-
<FaShareNodes className="w-5 h-5 md:w-6 md:h-6" />
92+
<FaShareNodes className="w-5 h-5" />
9393
</button>
9494
) : (
9595
<TooltipProvider>
@@ -100,7 +100,7 @@ export function SingleList({
100100
type="button"
101101
onClick={() => setIsAlertOpen(true)}
102102
>
103-
<FaShareNodes className="w-5 h-5 md:w-6 md:h-6 text-gray-500" />
103+
<FaShareNodes className="w-5 h-5 text-gray-500" />
104104
</Button>
105105
</TooltipTrigger>
106106
<TooltipContent>
@@ -117,7 +117,7 @@ export function SingleList({
117117
type="button"
118118
onClick={() => setIsAlertOpen(true)}
119119
>
120-
<Trash2 className="w-5 h-5 md:w-6 md:h-6 text-primary-pink hover:text-opacity-75 dark:text-emerald-500 dark:hover:text-opacity-80 transform hover:scale-110 transition-transform duration-150 sm:hover:scale-125" />
120+
<Trash2 className="w-5 h-5 text-primary-pink hover:text-opacity-75 dark:text-emerald-500 dark:hover:text-opacity-80 transform hover:scale-110 transition-transform duration-150 sm:hover:scale-125" />
121121
</Button>
122122
</AlertDialogTrigger>
123123
<AlertDialogContent>
@@ -155,7 +155,7 @@ export function SingleList({
155155
type="button"
156156
onClick={() => setIsAlertOpen(true)}
157157
>
158-
<Trash2 className="w-5 h-5 md:w-6 text-gray-500" />
158+
<Trash2 className="w-5 h-5 text-gray-500" />
159159
</Button>
160160
</TooltipTrigger>
161161
<TooltipContent>

0 commit comments

Comments
 (0)