v2.0 #7

Merged
Belupeti merged 13 commits from dev into master 2026-09-05 20:28:29 +02:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit 2bce3f9a71 - Show all commits
+3 -2
View File
@@ -1,5 +1,6 @@
<template> <template>
<Modal v-model:open="open"> <Modal v-model:open="open">
<h1>Wordle for word {{ index }}</h1> <h1>Wordle for word {{ index }}</h1>
<br> <br>
<div class="flex-container-a gap-1.5"> <div class="flex-container-a gap-1.5">
@@ -24,7 +25,7 @@
</template> </template>
</div> </div>
<UButton @click="onsubmit" class="m-1.5" v-if="guesses[guesses.length-1].toString().replace(/\,/gi, '') != correct"> <UButton @click="onsubmit" class="m-3" v-if="guesses[guesses.length-1].toString().replace(/\,/gi, '') != correct">
Submit Submit
</UButton> </UButton>
</Modal> </Modal>
@@ -68,7 +69,7 @@
localStorage.setItem('guesses-' + this.index, JSON.stringify(this.guesses)); localStorage.setItem('guesses-' + this.index, JSON.stringify(this.guesses));
} }
} },
}, },
} }
</script> </script>
+1 -1
View File
@@ -65,7 +65,7 @@
border-radius: 6px; border-radius: 6px;
width: 36px; width: 36px;
height: 36px; height: 36px;
line-height: 22px; line-height: 36px;
background-color: transparent; background-color: transparent;
text-transform: uppercase; text-transform: uppercase;
font-weight: bold; font-weight: bold;