Adding a table for survey mode

This commit is contained in:
Halcy0nic
2023-12-13 15:47:55 -07:00
parent 87acfbe1e2
commit 2adea59472
3 changed files with 79 additions and 60 deletions
+19
View File
@@ -11062,4 +11062,23 @@ section.resume-section .resume-section-content {
.red {
background-color: red;
}
/* Styling for the table */
.scrollable-table {
max-height: 300px;
overflow-y: auto;
display: block;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}