Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
marcolarosa committed Mar 6, 2024
1 parent 5bdf648 commit 10e6e1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/Stack.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<card :key="ref(idx)" v-for="(card, idx) of cards" :class="{ hidden: idx !== n }">
<template #text><div v-html="card.text"></div></template>
<template #image>
<div class="flex flex-col space-y-2">
<div class="flex flex-col space-y-2 main">
<img
v-if="!isArray(card.image)"
:src="card.image"
Expand Down Expand Up @@ -77,7 +77,7 @@ function previousCard() {
}
const initZoom = () => {
mediumZoom("img", { background: "var(--vp-c-bg)" });
mediumZoom(".main img", { background: "var(--vp-c-bg)" });
};
onMounted(() => {
initZoom();
Expand Down
2 changes: 1 addition & 1 deletion pages/desktop.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div class="flex flex-col space-y-10">
<InfoPanelComponent image="/desktop3.png" :border="false">
<InfoPanelComponent image="/tour/desktop1.png" :border="false">
<template #title>Describo Desktop</template>
<template #text>
<div>An application that you can use to describe your data; anywhere, anytime.</div>
Expand Down

0 comments on commit 10e6e1b

Please sign in to comment.