feat: hide description table on smaller screens
1 file changed, 16 insertions(+), 11 deletions(-)
changed files
M frontend/static/style.css → frontend/static/style.css
@@ -49,17 +49,6 @@ margin: unset; font-size: 1.15rem; } -@media only screen and (max-width: 600px) { - header > nav { - display: unset; - } -} -@media only screen and (max-width: 720px) { - header > nav { - padding: 1.5ex 0; - } -} - main { padding-top: unset; }@@ -216,3 +205,19 @@ .open-sibling-dialog { cursor: pointer; text-decoration: underline; } + +@media only screen and (max-width: 600px) { + header > nav { + display: unset; + } + .description, + .score { + display: none; + } +} +@media only screen and (max-width: 768px) { + header > nav { + padding: 1ch; + padding-right: 0; + } +}