fix price table size

This commit is contained in:
Thomas Ruoff
2021-06-19 00:23:26 +02:00
parent f5892da1d8
commit 946a5cfb2f

View File

@@ -9,44 +9,37 @@ export default function Prices() {
<tr>
<th
scope="col"
className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
className="w-2/3 px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
>
Gefahrene Kilomenter
Gefahrene km
</th>
<th
scope="col"
className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
className="w-1/3 px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
>
Kosten
</th>
<th
scope="col"
className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
>
Bemerkungen
Preis/km
</th>
</tr>
</thead>
<tbody className="bg-white divide-y divide-gray-200">
<tr>
<td className="px-6 py-4 whitespace-nowrap">bis 200 km</td>
<td className="px-6 py-4 whitespace-nowrap">0,42 Euro / km</td>
<td className="px-6 py-4 whitespace-nowrap">inklusive Sprit</td>
<td className="px-6 py-4">bis 200 km</td>
<td className="px-6 py-4">
0,42 <br />
inklusive Sprit
</td>
</tr>
<tr>
<td className="px-6 py-4 whitespace-nowrap">201-1000 km</td>
<td className="px-6 py-4 whitespace-nowrap">0,25 Euro / km</td>
<td className="px-6 py-4 whitespace-nowrap">exclusive Sprit</td>
<td className="px-6 py-4">201 - 1000 km</td>
<td className="px-6 py-4">0,25 </td>
</tr>
<tr>
<td className="px-6 py-4 whitespace-nowrap">1001-2000 km</td>
<td className="px-6 py-4 whitespace-nowrap">0,20 Euro / km</td>
<td className="px-6 py-4 whitespace-nowrap">exclusive Sprit</td>
<td className="px-6 py-4">1001 - 2000 km</td>
<td className="px-6 py-4">0,20 </td>
</tr>
<tr>
<td className="px-6 py-4 whitespace-nowrap">ab 2001 km</td>
<td className="px-6 py-4 whitespace-nowrap">0,18 Euro / km</td>
<td className="px-6 py-4 whitespace-nowrap">exclusive Sprit</td>
<td className="px-6 py-4">ab 2001 km</td>
<td className="px-6 py-4">0,18 </td>
</tr>
</tbody>
</table>