Add pages for showing the CSV upload UI

And sample CSV file download
This commit is contained in:
Eli Ribble 2026-02-07 20:02:39 +00:00
parent 59076e9eb0
commit d437c68403
No known key found for this signature in database
7 changed files with 63 additions and 26 deletions

View file

@ -0,0 +1,20 @@
.upload-container {
max-width: 800px;
margin: 0 auto;
}
.schema-table {
font-size: 0.9rem;
}
.upload-area {
border: 2px dashed #dee2e6;
padding: 2rem;
text-align: center;
margin: 1.5rem 0;
border-radius: 5px;
background-color: #f8f9fa;
}
.required-field::after {
content: "*";
color: red;
margin-left: 3px;
}