@@ -18,7 +18,7 @@ export function CookiePreferencesMenu() {
1818 animate = { { opacity : 1 , scale : 1 } }
1919 transition = { { duration : 0.3 , ease : "easeOut" } }
2020 onClick = { ( ) => setIsOpen ( ( v ) => ! v ) }
21- className = "fixed bottom-6 right-6 z-50 rounded-full bg-blue-600 p-3 text-white shadow-xl hover:bg-blue-700"
21+ className = "fixed cursor-pointer bottom-6 right-6 z-50 rounded-full bg-blue-600 p-3 text-white shadow-xl hover:bg-blue-700"
2222 aria-label = "Cookie Preferences"
2323 style = { { boxShadow : "0 4px 24px 0 rgba(0,0,0,0.18)" } }
2424 >
@@ -42,7 +42,7 @@ export function CookiePreferencesMenu() {
4242 < button
4343 type = "button"
4444 onClick = { ( ) => setIsOpen ( false ) }
45- className = "text-gray-400 hover:text-gray-500 dark:hover:text-gray-300"
45+ className = "text-gray-400 cursor-pointer hover:text-gray-500 dark:hover:text-gray-300"
4646 aria-label = "Close cookie preferences"
4747 >
4848 < X className = "h-5 w-5" />
@@ -126,14 +126,14 @@ export function CookiePreferencesMenu() {
126126 acceptAll ( ) ;
127127 setIsOpen ( false ) ;
128128 } }
129- className = "inline-flex flex-1 items-center justify-center rounded-md border border-transparent bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700"
129+ className = "cursor-pointer inline-flex flex-1 items-center justify-center rounded-md border border-transparent bg-blue-600 px-4 py-2 text-sm font-medium text-white hover:bg-blue-700"
130130 >
131131 Accept All
132132 </ button >
133133 < button
134134 type = "button"
135135 onClick = { ( ) => setIsOpen ( false ) }
136- className = "inline-flex flex-1 items-center justify-center rounded-md border border-gray-300 bg-white px-4 py-2 text-sm font-medium text-gray-700 hover:bg-gray-50 dark:border-gray-600 dark:bg-gray-800 dark:text-gray-200 dark:hover:bg-gray-700"
136+ className = "cursor-pointer inline-flex flex-1 items-center justify-center rounded-md border border-gray-300 bg-white px-4 py-2 text-sm font-medium text-gray-700 hover:bg-gray-50 dark:border-gray-600 dark:bg-gray-800 dark:text-gray-200 dark:hover:bg-gray-700"
137137 >
138138 Save
139139 </ button >
0 commit comments