@mixd-id/web-scaffold 0.1.230406130 → 0.1.230406131
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/widgets/Review.vue +3 -3
package/package.json
CHANGED
package/src/widgets/Review.vue
CHANGED
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
</div>
|
|
38
38
|
</div>
|
|
39
39
|
|
|
40
|
-
<div class="md:flex-1 py-6 flex flex-col
|
|
40
|
+
<div class="md:flex-1 py-6 flex flex-col gap-6">
|
|
41
41
|
|
|
42
|
-
<div v-for="review in items.reviews" class="
|
|
42
|
+
<div v-for="review in items.reviews" class="flex flex-col gap-2 bg-white border-[1px] border-gray-200 p-4 pb-2 rounded-xl">
|
|
43
43
|
<div class="flex flex-row gap-4">
|
|
44
44
|
<div class="flex-1 flex flex-col gap-2">
|
|
45
45
|
<div class="flex flex-row gap-1">
|
|
@@ -117,7 +117,7 @@ export default{
|
|
|
117
117
|
}
|
|
118
118
|
|
|
119
119
|
.bar{
|
|
120
|
-
@apply h-[1rem] bg-gray-
|
|
120
|
+
@apply h-[1rem] bg-gray-200 rounded-lg;
|
|
121
121
|
@apply relative;
|
|
122
122
|
}
|
|
123
123
|
.bar>*{
|