@@ -233,7 +233,7 @@ const SideHistory = () => {
233233 return (
234234 < div
235235 key = { 'pin-' + pinHistory . id }
236- className = 'flex w-full select-none items-center justify-between rounded bg-blue-100 p-1 transition duration-200 ease-in-out hover:bg-gray-200 dark:bg-slate-500 dark:hover:bg-stone-700'
236+ className = 'flex w-full select-none items-center justify-between rounded bg-blue-100 p-1 transition duration-200 ease-in-out hover:bg-gray-200 dark:bg-slate-700 dark:hover:bg-stone-700'
237237 >
238238 < div className = 'inline-flex items-center space-x-2' >
239239 < button className = 'block' onClick = { ( ) => onHistoryUnpin ( pinHistory . id ) } >
@@ -254,10 +254,10 @@ const SideHistory = () => {
254254 { pinHistory . type }
255255 </ button >
256256 < button className = 'block' onClick = { ( ) => onTitleChange ( pinHistory . id , pinHistory . type ) } >
257- < TiBrush className = 'text-lg hover:fill-green-500' />
257+ < TiBrush className = 'text-lg transition duration-500 ease-in-out hover:fill-green-500' />
258258 </ button >
259259 < button className = 'block' onClick = { ( ) => onHistoryDelete ( pinHistory . id , pinHistory . type ) } >
260- < TiDeleteOutline className = 'text-lg hover:fill-red-500' />
260+ < TiDeleteOutline className = 'text-lg transition duration-500 ease-in-out hover:fill-red-500' />
261261 </ button >
262262 </ div >
263263 </ div >
@@ -288,10 +288,10 @@ const SideHistory = () => {
288288 { history . type }
289289 </ button >
290290 < button className = 'block' onClick = { ( ) => onTitleChange ( history . id , history . type ) } >
291- < TiBrush className = 'text-lg hover:fill-green-500' />
291+ < TiBrush className = 'text-lg transition duration-500 ease-in-out hover:fill-green-500' />
292292 </ button >
293293 < button className = 'block' onClick = { ( ) => onHistoryDelete ( history . id , history . type ) } >
294- < TiDeleteOutline className = 'text-lg hover:fill-red-500' />
294+ < TiDeleteOutline className = 'text-lg transition duration-500 ease-in-out hover:fill-red-500' />
295295 </ button >
296296 </ div >
297297 </ div >
0 commit comments