We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 732228c commit 8b33dfeCopy full SHA for 8b33dfe
‎src/components/MatchingPicture.vue
@@ -158,7 +158,7 @@ function newGame() {
158
</script>
159
160
<template>
161
- <div m-t-5 flex="~ gap-5" justify-center>
+ <div m-y-5 flex="~ gap-5" justify-center>
162
<button btn @click="reset">Rest</button>
163
<button btn @click="newGame">New Game</button>
164
</div>
‎src/config.ts
@@ -7,5 +7,5 @@ export const ratio = ref<number>(0)
7
export const n = ref<number>(4)
8
export const loading = ref<boolean>(true)
9
export const emptyFlag = "./empty.png";
10
-export const height = computed(() => ratio.value * 5);
+export const height = computed(() => 1 / ratio.value * 5);
11
0 commit comments