feat: tekstveld om code in te vullen om zich bij een klas te voegen

This commit is contained in:
laurejablonski 2025-03-28 17:43:13 +01:00
parent 15e2fa9960
commit 28392a5cee

View file

@ -50,6 +50,17 @@
</tbody>
</v-table>
</div>
<div class="join">
<h1>{{ t("joinClass") }}</h1>
<p>{{ t("Enter the code the teacher has given you to join the class.") }}</p>
<v-text-field
label="CODE"
placeholder="Enter the code"
variant="outlined"
max-width="300px"
></v-text-field>
</div>
</main>
</template>
@ -62,11 +73,11 @@
}
table thead th:first-child {
border-top-left-radius: 10px; /* Top-left rounded corner */
border-top-left-radius: 10px;
}
.table thead th:last-child {
border-top-right-radius: 10px; /* Top-right rounded corner */
border-top-right-radius: 10px;
}
.table tbody tr:nth-child(odd) {
@ -98,4 +109,17 @@
padding-top: 2%;
font-size: 50px;
}
h1 {
color: #0e6942;
font-size: 30px;
}
.join {
display: flex;
flex-direction: column;
gap: 20px;
margin-left: 30px;
margin-top: 50px;
}
</style>