css: improve table display

- Use full reading col width for tables on large screens
- Use `display: block; overflow-x: scroll;` on small screens

Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
This commit is contained in:
David Karlsson 2023-12-06 20:52:09 +01:00
parent b8515a14c3
commit fbab835920
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
.prose table {
@apply block overflow-x-auto text-base;
@apply table w-full text-base sm:block overflow-x-auto;
thead tr {
@apply bg-gray-light-300 dark:bg-gray-dark-300
}