updated export to csv file

This commit is contained in:
2025-04-25 14:41:10 +03:00
parent a8f07497a0
commit e6878495a1
2 changed files with 37 additions and 12 deletions

View File

@@ -667,4 +667,26 @@ body.dark-mode .export-description {
padding: 5px 10px; /* Make the buttons smaller */
font-size: 0.9em; /* Reduce the font size */
border-radius: 3px; /* Slightly smaller border radius */
}
/* Style for the report-table container */
.report-table-container {
max-height: 1000px; /* Set the maximum height */
overflow-y: auto; /* Enable vertical scrolling */
border: 1px solid #ddd; /* Optional: Add a border for better visibility */
margin-top: 10px; /* Optional: Add spacing above the table */
}
/* Ensure the table takes full width */
.report-table-container table {
width: 100%; /* Make the table take the full width of the container */
border-collapse: collapse; /* Optional: Collapse table borders */
}
/* Optional: Add styles for table rows and cells */
.report-table-container th,
.report-table-container td {
padding: 8px;
text-align: left;
border: 1px solid #ddd; /* Add borders to table cells */
}