Skip to content

Commit c711704

Browse files
authored
Merge pull request #1521 from w3bdesign/develop
Replace loading text with spinner icon in cart
2 parents ef5f949 + 749e860 commit c711704

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

components/Layout/LayoutCart.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<template>
22
<div class="mt-4 lg:mt-0">
33
<div v-if="isLoading">
4-
<span class="text-xl text-gray-500">Loading cart...</span>
4+
<Icon
5+
name="ri:loader-4-line"
6+
size="1.5em"
7+
class="text-gray-500 animate-spin"
8+
/>
59
</div>
610
<div v-else-if="error">
711
<span class="text-xl text-red-500">

0 commit comments

Comments
 (0)