mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-04 15:07:13 +01:00
fix price table size
This commit is contained in:
@@ -9,44 +9,37 @@ export default function Prices() {
|
|||||||
<tr>
|
<tr>
|
||||||
<th
|
<th
|
||||||
scope="col"
|
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>
|
||||||
<th
|
<th
|
||||||
scope="col"
|
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
|
Preis/km
|
||||||
</th>
|
|
||||||
<th
|
|
||||||
scope="col"
|
|
||||||
className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider"
|
|
||||||
>
|
|
||||||
Bemerkungen
|
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody className="bg-white divide-y divide-gray-200">
|
<tbody className="bg-white divide-y divide-gray-200">
|
||||||
<tr>
|
<tr>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">bis 200 km</td>
|
<td className="px-6 py-4">bis 200 km</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">0,42 Euro / km</td>
|
<td className="px-6 py-4">
|
||||||
<td className="px-6 py-4 whitespace-nowrap">inklusive Sprit</td>
|
0,42 €<br />
|
||||||
|
inklusive Sprit
|
||||||
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">201-1000 km</td>
|
<td className="px-6 py-4">201 - 1000 km</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">0,25 Euro / km</td>
|
<td className="px-6 py-4">0,25 €</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">exclusive Sprit</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">1001-2000 km</td>
|
<td className="px-6 py-4">1001 - 2000 km</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">0,20 Euro / km</td>
|
<td className="px-6 py-4">0,20 €</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">exclusive Sprit</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">ab 2001 km</td>
|
<td className="px-6 py-4">ab 2001 km</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">0,18 Euro / km</td>
|
<td className="px-6 py-4">0,18 €</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap">exclusive Sprit</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user