diff --git a/src/lib/components/bottomModalAlert.svelte b/src/lib/components/bottomModalAlert.svelte index 7f838fc64..65917ab10 100644 --- a/src/lib/components/bottomModalAlert.svelte +++ b/src/lib/components/bottomModalAlert.svelte @@ -208,7 +208,7 @@ @@ -217,8 +217,10 @@ aria-label="Next" class="icon-cheveron-right" on:click={showNext} - class:u-cursor-pointer={currentIndex !== - filteredModalAlerts.length - 1} + style:cursor={currentIndex !== + filteredModalAlerts.length - 1 + ? 'pointer' + : undefined} disabled={currentIndex === filteredModalAlerts.length - 1} class:active={currentIndex !== filteredModalAlerts.length - 1}> @@ -317,7 +319,7 @@ @@ -326,8 +328,10 @@ aria-label="Next" class="icon-cheveron-right" on:click={showNext} - class:u-cursor-pointer={currentIndex !== - filteredModalAlerts.length - 1} + style:cursor={currentIndex !== + filteredModalAlerts.length - 1 + ? 'pointer' + : undefined} disabled={currentIndex === filteredModalAlerts.length - 1} class:active={currentIndex !==