Table margin adjustment to avoid reflow

This commit is contained in:
Francis Lavoie 2024-10-21 20:12:32 -04:00
parent 62ecf63350
commit 65f627e6bf
No known key found for this signature in database
GPG key ID: 52BC55A211F19186
2 changed files with 4 additions and 2 deletions

View file

@ -720,10 +720,11 @@ table {
article > .table-wrapper { article > .table-wrapper {
overflow-x: scroll; overflow-x: scroll;
margin: 25px 0 0 0;
} }
article table { article table {
margin: 25px auto; margin: 0 auto 25px auto;
} }
th, td { th, td {

View file

@ -589,10 +589,11 @@ table {
article > .table-wrapper { article > .table-wrapper {
overflow-x: scroll; overflow-x: scroll;
margin: 25px 0 0 0;
} }
article table { article table {
margin: 25px auto; margin: 0 auto 25px auto;
} }
th, td { th, td {