Fix overflow for mobile, add spacing between buttons (#32)

Fix mobile being unable to scroll across to the buttons
Retain overflow-hidden when collapsed to hide content

Changing of CSS removes extra margin-bottom: rem padding incidentally
This commit is contained in:
cthorne
2025-01-04 21:41:29 +10:00
committed by GitHub
parent b8a7247538
commit 268dac069a

View File

@@ -133,6 +133,7 @@ tbody tr:hover {
font-size: 1rem;
transition: background-color 0.3s ease;
width: 100%;
margin-bottom: 0.25rem;
}
.details-button:hover {
@@ -165,11 +166,11 @@ tbody tr:hover {
.results-content {
transition: max-height 0.3s ease;
overflow: hidden;
}
.collapsed .results-content {
max-height: 0;
overflow: hidden;
}
/* Loading Indicator */