first qyality report

This commit is contained in:
2025-04-24 06:39:24 +03:00
parent 5526ff5840
commit fd8897aaca
5 changed files with 175 additions and 24 deletions

View File

@@ -639,4 +639,32 @@ body.dark-mode .dashboard-full-width-card {
.dashboard-full-width-card {
flex: 1 1 100%; /* Ensure the full-width card spans the entire width */
}
}
/* Style for the export description label */
.export-description {
display: block;
margin-bottom: 10px;
font-size: 1em;
font-weight: bold;
color: #333; /* Default color for light mode */
}
/* Dark mode styles for the export description label */
body.dark-mode .export-description {
color: #fefdfd; /* Light color for dark mode */
}
/* Style for the container holding the last two buttons */
.form-centered.last-buttons .button-row {
display: flex;
justify-content: flex-start; /* Align buttons to the left */
gap: 10px; /* Add spacing between the buttons */
}
/* Style for the buttons */
.form-centered.last-buttons .btn {
padding: 5px 10px; /* Make the buttons smaller */
font-size: 0.9em; /* Reduce the font size */
border-radius: 3px; /* Slightly smaller border radius */
}