Adjust size of tables and only adjust the first column on mobile

This commit is contained in:
Francisco de Brito Fontes 2018-04-30 20:03:39 +02:00
parent 237ad1f11e
commit 1341a9c603

View file

@ -1,3 +1,10 @@
td:nth-child(1){
white-space: nowrap;
}
.md-typeset__table {
min-width: 100%;
}
@media only screen and (min-width: 768px)
{
td:nth-child(1){
white-space: nowrap;
}
}