@dcrackel/meyersquaredui 1.0.91 → 1.0.92
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
CHANGED
|
@@ -5,17 +5,19 @@
|
|
|
5
5
|
<div v-if="!isLoading" class="w-full md:w-full md:mb-8 border border-secondary hover:border-accent hover:cursor-pointer p-2 rounded-lg overflow-hidden" @click="onCardClick">
|
|
6
6
|
<!-- Desktop Version -->
|
|
7
7
|
<section class="hidden md:block">
|
|
8
|
-
<
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
8
|
+
<div class="relative w-full h-52">
|
|
9
|
+
<img
|
|
10
|
+
:src="image"
|
|
11
|
+
alt="Tournament Image"
|
|
12
|
+
class="w-full h-full object-cover mb-2 rounded-md"
|
|
13
|
+
@error="imageError"
|
|
14
|
+
:style="fallbackStyle"
|
|
15
|
+
/>
|
|
16
|
+
<img v-if="data.HostedOnM2"
|
|
17
|
+
src="https://meyersquaredimages.com/images/banners/m2-white.png"
|
|
18
|
+
alt="Bookmark Icon"
|
|
19
|
+
class="w-8 absolute top-2 right-2 p-1 bg-white rounded" />
|
|
20
|
+
</div>
|
|
19
21
|
<BaseText tag="h3" size="xl" weight="semibold" class="mb-1">{{ title }}</BaseText>
|
|
20
22
|
<BaseText tag="p" size="sm" weight="semibold" class="mb-2">{{ location }}</BaseText>
|
|
21
23
|
<div class="flex items-center mb-1">
|