fix broken display for multiple spreadsheets due to absolute position

removed absolute positioning as it made spreadsheets on top of each other
and made the spreadsheet's width and height as full screen as possible. also, add a separating margin between two spreadsheets.
This commit is contained in:
Ziad-I
2024-08-25 20:30:20 +03:00
parent 1745a4fd39
commit f26f6dfe5e
@@ -202,11 +202,10 @@ footer p {
}
.table-container {
position: absolute;
display: block;
height: calc(100% - var(--margin-small) * 2);
width: calc(100% - var(--margin-small) * 2);
overflow-x: scroll;
height: calc(100vh - var(--margin-small));
width: 100%;
margin-bottom: var(--margin-medium);
}
.csv-table {