succd: Fix mobile layout
Use smaller font sizes for mobile devices so the full interface fits on a single screen (mostly).
This commit is contained in:
parent
4f74e92c45
commit
276551064f
|
@ -69,6 +69,18 @@ td > span {
|
||||||
column-gap: 2em;
|
column-gap: 2em;
|
||||||
row-gap: 2em;
|
row-gap: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 700px) {
|
||||||
|
body {
|
||||||
|
font-size: 6px;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
th {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<div class="logo"><img src="/favicon.png" /></div>
|
<div class="logo"><img src="/favicon.png" /></div>
|
||||||
|
|
Loading…
Reference in a new issue