🐛 Fixes html table

This commit is contained in:
2026-01-15 14:03:43 +01:00
parent 30c9bd8702
commit 03a7f0a354

View File

@@ -119,6 +119,7 @@
<h2 class="text-lg">{{ $t("main.experience.title") }}</h2> <h2 class="text-lg">{{ $t("main.experience.title") }}</h2>
<table class="w-full"> <table class="w-full">
<thead>
<tr> <tr>
<th class="max-w-48"> <th class="max-w-48">
<p class="px-1"> <p class="px-1">
@@ -131,7 +132,9 @@
</p> </p>
</th> </th>
</tr> </tr>
</thead>
<tbody>
<tr> <tr>
<td>{{ $t("main.experience.0.when") }}</td> <td>{{ $t("main.experience.0.when") }}</td>
<td> <td>
@@ -152,11 +155,13 @@
</p> </p>
</td> </td>
</tr> </tr>
</tbody>
</table> </table>
<div class="h-6" /> <div class="h-6" />
<h2 class="text-lg">{{ $t("main.education.title") }}</h2> <h2 class="text-lg">{{ $t("main.education.title") }}</h2>
<table class="w-full"> <table class="w-full">
<thead>
<tr> <tr>
<th class="max-w-48"> <th class="max-w-48">
<p class="px-1"> <p class="px-1">
@@ -169,7 +174,9 @@
</p> </p>
</th> </th>
</tr> </tr>
</thead>
<tbody>
<tr> <tr>
<td>{{ $t("main.education.0.when") }}</td> <td>{{ $t("main.education.0.when") }}</td>
<td>{{ $t("main.education.0.where") }}</td> <td>{{ $t("main.education.0.where") }}</td>
@@ -184,6 +191,7 @@
<td>{{ $t("main.education.2.when") }}</td> <td>{{ $t("main.education.2.when") }}</td>
<td>{{ $t("main.education.2.where") }}</td> <td>{{ $t("main.education.2.where") }}</td>
</tr> </tr>
</tbody>
</table> </table>
<div class="h-6" /> <div class="h-6" />
@@ -208,6 +216,7 @@
<h2 class="text-lg">{{ $t("main.projects.title") }}</h2> <h2 class="text-lg">{{ $t("main.projects.title") }}</h2>
<table class="w-full"> <table class="w-full">
<thead>
<tr> <tr>
<th class="max-w-60"> <th class="max-w-60">
<p class="px-1"> <p class="px-1">
@@ -230,7 +239,9 @@
</p> </p>
</th> </th>
</tr> </tr>
</thead>
<tbody>
<tr> <tr>
<td>{{ $t("main.projects.0.name") }}</td> <td>{{ $t("main.projects.0.name") }}</td>
<td class="flex gap-x-2"> <td class="flex gap-x-2">
@@ -379,6 +390,7 @@
</span> </span>
</td> </td>
</tr> </tr>
</tbody>
</table> </table>
<p class="mt-1">{{ $t("main.projects.footer") }}</p> <p class="mt-1">{{ $t("main.projects.footer") }}</p>