Parse CSV files into HTML tables

هذا الالتزام موجود في:
Thomas Miceli
2023-03-19 03:18:56 +01:00
الأصل 11b3eed250
التزام 858ee3e70a
5 ملفات معدلة مع 108 إضافات و13 حذوفات

20
public/style.css مباع
عرض الملف

@@ -110,4 +110,24 @@ pre {
.line-num {
@apply cursor-pointer text-slate-400 hover:text-white;
}
table.csv-table {
@apply w-full whitespace-pre text-xs;
}
table.csv-table thead {
text-align: left;
}
table.csv-table thead tr {
@apply bg-slate-800;
}
table.csv-table thead tr th {
@apply border py-2 px-1 border-slate-700;
}
table.csv-table tbody td {
@apply border py-1.5 px-1 border-slate-800;
}