Skip to content

Commit 844e2ae

Browse files
RitekNiallJoeMaher
andauthored
Resolve #1243 Change Select MenuItem style in draft view (#1277)
Co-authored-by: Niall Maher <[email protected]>
1 parent 08a5b3a commit 844e2ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/(app)/my-posts/_client.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,11 +206,11 @@ const MyPosts = () => {
206206
<div className="dropdown-bg py-1">
207207
<MenuItem>
208208
<Link
209-
className="dropdown-item group flex items-center px-4 py-2 text-sm text-neutral-700 data-[focus]:bg-neutral-100 data-[focus]:text-black"
209+
className="dropdown-item group flex items-center px-4 py-2 text-sm text-neutral-700 data-[focus]:bg-neutral-100 data-[focus]:text-neutral-500"
210210
href={`/create/${id}`}
211211
>
212212
<PencilIcon
213-
className="mr-3 h-5 w-5 text-neutral-400 group-hover:text-neutral-500"
213+
className="mr-3 h-5 w-5 text-neutral-500 group-hover:text-neutral-400"
214214
aria-hidden="true"
215215
/>
216216
Edit
@@ -220,10 +220,10 @@ const MyPosts = () => {
220220
<MenuItem>
221221
<button
222222
onClick={() => setSelectedArticleToDelete(id)}
223-
className="dropdown-item group flex w-full items-center px-4 py-2 text-sm text-neutral-700 data-[focus]:bg-neutral-100 data-[focus]:text-black"
223+
className="dropdown-item group flex w-full items-center px-4 py-2 text-sm text-neutral-700 data-[focus]:bg-neutral-100 data-[focus]:text-neutral-500"
224224
>
225225
<TrashIcon
226-
className="mr-3 h-5 w-5 text-neutral-400 group-hover:text-neutral-500"
226+
className="mr-3 h-5 w-5 text-neutral-400 group-hover:text-neutral-400"
227227
aria-hidden="true"
228228
/>
229229
Delete

0 commit comments

Comments
 (0)