minor fixes
Build / Build-image (push) Successful in 54s

This commit is contained in:
2026-08-11 00:28:13 +02:00
parent 78fa96ea64
commit ddcb410eee
4 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ jobs:
env: env:
IMAGE_NAME: tladle IMAGE_NAME: tladle
REGISTRY_NAME: gitea.sc0tt.org REGISTRY_NAME: gitea.sc0tt.org
GIT_TAG: 1.0 GIT_TAG: 1.0.1
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
+3 -3
View File
@@ -47,15 +47,15 @@ import { Transition } from 'vue';
background-color: rgb(129, 112, 0); background-color: rgb(129, 112, 0);
} }
.cw-cp { .cw-cp {
background-color: rgb(0, 122, 2); background-color: rgb(0, 97, 2);
} }
.cw-ip { .cw-ip {
background-color: rgb(1, 185, 4); background-color: rgb(19, 197, 22);
} }
.cf-cp { .cf-cp {
background-color: rgb(0, 9, 166); background-color: rgb(0, 9, 166);
} }
.cf-ip { .cf-ip {
background-color: rgb(45, 54, 225); background-color: rgb(70, 78, 235);
} }
</style> </style>
+7 -2
View File
@@ -53,7 +53,7 @@ import Modal from '../components/Modal.vue';
} }
}, },
onkeyup() { onkeyup() {
this.words = this.guess.trim().split(/\W+/); this.words = this.guess.trim().split(/\s+/);
} }
} }
} }
@@ -77,7 +77,7 @@ import Modal from '../components/Modal.vue';
<br> <br>
<br> <br>
You can use the following color codes to determin how close you were to the correct answer: You can use the following color codes to determine how close you were to the correct answer:
<div class="flex-container"> <div class="flex-container">
<GuessWord :correctness="4">Correct word, correct place</GuessWord> <GuessWord :correctness="4">Correct word, correct place</GuessWord>
@@ -87,7 +87,12 @@ import Modal from '../components/Modal.vue';
</div> </div>
If you have any feedback, <a style="text-decoration: underline;" href="mailto:peter@sc0tt.org"> If you have any feedback, <a style="text-decoration: underline;" href="mailto:peter@sc0tt.org">
let me know in an email let me know in an email
</a>, or create a <a style="text-decoration: underline;" href='https://gitea.sc0tt.org/Belupeti/TLA/pulls'>pull request</a> </a>, or create a <a style="text-decoration: underline;" href='https://gitea.sc0tt.org/Belupeti/TLA/pulls'>pull request</a>
<br><br>
<h2 style="font-weight: bold;">IMPORTANT</h2>
<p>Only use lowercase letters, I have not yet implemented automatic casing yet and I should really get some sleep</p>
</template> </template>
</UModal> </UModal>
+1 -1
View File
@@ -12,7 +12,7 @@
<!-- Dark mode favicon --> <!-- Dark mode favicon -->
<link rel="icon" href="{{ asset('favicon-dark.ico') }}" type="image/x-icon" media="(prefers-color-scheme: dark)"> <link rel="icon" href="{{ asset('favicon-dark.ico') }}" type="image/x-icon" media="(prefers-color-scheme: dark)">
<title>TLA</title> <title>TLAdle</title>
@vite(['resources/js/app.js']) @vite(['resources/js/app.js'])
</head> </head>
<body> <body>