@@ -229,7 +229,7 @@ onMounted(() => {
229229 </span >
230230 </div >
231231 <button
232- class =" text-rose-500 hover:text-rose-700 dark:text-rose-400 dark:hover:text-rose-600 transition-colors duration-200 ml-2 flex-shrink-0"
232+ class =" text-rose-500 hover:text-rose-700 dark:text-rose-400 dark:hover:text-rose-600 transition-colors duration-200 ml-2 flex-shrink-0 cursor-pointer "
233233 aria-label =" Delete project"
234234 @click =" initiateDelete($event, project.id)"
235235 >
@@ -258,7 +258,7 @@ onMounted(() => {
258258 class =" flex-grow flex flex-col items-center space-y-4 p-2"
259259 >
260260 <button
261- class =" w-10 h-10 rounded-full flex items-center justify-center bg-stone-300 hover:bg-stone-400 dark:bg-stone-500 dark:hover:bg-stone-400 text-stone-800 dark:text-stone-100 transition-colors duration-200"
261+ class =" w-10 h-10 rounded-full flex items-center justify-center bg-stone-300 hover:bg-stone-400 dark:bg-stone-500 dark:hover:bg-stone-400 text-stone-800 dark:text-stone-100 transition-colors duration-200 cursor-pointer "
262262 @click =" openAddProjectModal"
263263 >
264264 <svg
@@ -279,7 +279,7 @@ onMounted(() => {
279279 <button
280280 v-for =" project in sortedProjects"
281281 :key =" project.id"
282- class =" w-10 h-10 rounded-full flex items-center justify-center transition-colors duration-200"
282+ class =" w-10 h-10 rounded-full flex items-center justify-center transition-colors duration-200 cursor-pointer "
283283 :class =" [
284284 project.id === currentProjectId
285285 ? 'bg-stone-300 dark:bg-stone-500 text-stone-800 dark:text-stone-100'
@@ -421,7 +421,7 @@ onMounted(() => {
421421 <button
422422 v-for =" (action, index) in ['configure', 'upload', 'export', 'home']"
423423 :key =" index"
424- class =" w-full p-2 rounded flex items-center justify-center bg-stone-200 hover:bg-stone-300 dark:bg-stone-600 dark:hover:bg-stone-500 text-stone-700 dark:text-stone-200 transition-colors duration-200"
424+ class =" w-full p-2 rounded flex items-center justify-center bg-stone-200 hover:bg-stone-300 dark:bg-stone-600 dark:hover:bg-stone-500 text-stone-700 dark:text-stone-200 transition-colors duration-200 cursor-pointer "
425425 @click =" handleAction(action)"
426426 >
427427 <svg
@@ -485,13 +485,13 @@ onMounted(() => {
485485 </p >
486486 <div class =" flex justify-end space-x-2" >
487487 <button
488- class =" px-4 py-2 bg-stone-300 text-stone-800 rounded hover:bg-stone-400 transition-colors duration-200"
488+ class =" px-4 py-2 bg-stone-300 text-stone-800 rounded hover:bg-stone-400 transition-colors duration-200 cursor-pointer "
489489 @click =" cancelDelete"
490490 >
491491 Cancel
492492 </button >
493493 <button
494- class =" px-4 py-2 bg-rose-500 text-white rounded hover:bg-rose-600 transition-colors duration-200"
494+ class =" px-4 py-2 bg-rose-500 text-white rounded hover:bg-rose-600 transition-colors duration-200 cursor-pointer "
495495 @click =" confirmDeleteProject"
496496 >
497497 Delete
@@ -507,7 +507,7 @@ onMounted(() => {
507507 >
508508 <div class =" bg-white dark:bg-stone-800 p-6 rounded-lg shadow-xl w-full max-w-lg relative" >
509509 <button
510- class =" absolute top-4 right-4 text-stone-400 hover:text-stone-600 dark:text-stone-300 dark:hover:text-white transition-colors duration-300"
510+ class =" absolute top-4 right-4 text-stone-400 hover:text-stone-600 dark:text-stone-300 dark:hover:text-white transition-colors duration-300 cursor-pointer "
511511 aria-label =" Close Modal"
512512 @click =" closeAddProjectModal"
513513 >
0 commit comments