add responsive table on mobile (<767px) (#10209)

This commit is contained in:
Ihor Sychevskyi 2021-08-24 01:32:58 +03:00 committed by GitHub
parent 2c28b12808
commit 836d05ae39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -92,6 +92,10 @@ table {
border-spacing: 0;
width: 100%;
display: table;
@media (max-width: $bp-sm) {
display: block;
overflow-x: auto;
}
}
table p:first-of-type {