admon code for results
release-tag / release-image (push) Successful in 1m6s

This commit is contained in:
2025-06-01 16:00:55 +02:00
parent 75669682ab
commit 429b8048a0
5 changed files with 55 additions and 10 deletions
+7
View File
@@ -1,5 +1,8 @@
<template>
<div class="emphased">
<div>
<input class="hidden" checked ref="input" type="radio" value="unset" :name="questionId">
</div>
<RadioButton v-for="(val, index) in values" :key="index" :index="index" :question-id="questionId" :val="val"
:color="colors[index] ?? 'unset'" />
</div>
@@ -32,4 +35,8 @@ const { values = ["Très bien", "Bien", "Passable", "Insuffisant", "À rejeter"]
.emphased div:last-child {
border-right: 1px solid #444;
}
.hidden {
display: none;
}
</style>