Full mobile support

This commit is contained in:
Jai A
2020-11-05 21:44:08 -07:00
parent f5c567eb90
commit 198b3c9f1b
3 changed files with 84 additions and 1 deletions

View File

@@ -495,4 +495,40 @@ input {
border-left: #e04e3e 7px solid;
padding: 5px 20px 20px 20px;
}
@media screen and (max-width: 400px) {
th,
td {
&:nth-child(7) {
display: none;
}
}
}
@media screen and (max-width: 600px) {
th,
td {
&:nth-child(8) {
display: none;
}
}
}
@media screen and (max-width: 800px) {
th,
td {
&:nth-child(5) {
display: none;
}
}
}
@media screen and (max-width: 1000px) {
th,
td {
&:nth-child(2) {
display: none;
}
}
}
</style>