Merge pull request #900 from saif191020/main

Added Css to Improve Mobile support on the home page
This commit is contained in:
Roger Far 2025-11-13 19:07:52 -07:00 committed by GitHub
commit ed218d76ce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,6 +5,12 @@ table {
word-break: break-all;
}
}
// Make table horizontally scrollable on small screens
@media screen and (max-width: 768px) {
display: block;
overflow-x: auto;
white-space: nowrap;
}
}
.flex-container {