Mobile friendly fix

This commit is contained in:
Justijn Depover 2019-10-04 08:26:19 +02:00 committed by GitHub
parent 79b5d4499e
commit 4331950bb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -15,6 +15,7 @@ body {
font-family: "courier new", monospace;
color: darkorange;
background: #000400;
word-wrap: break-word;
}
a {
background: darkorange;
@ -133,3 +134,10 @@ div.alert-success {
opacity: 1;
}
}
/* Mobile */
@media (min-width: 768px) {
td {
display: block;
}
}