From 48e6f53d7ec647317d98ada6b38fb3e9b853a6a7 Mon Sep 17 00:00:00 2001 From: Kenny Date: Mon, 25 Dec 2023 23:23:37 -0800 Subject: [PATCH] minor style fixes (#73) Makes the "choice" parameter style consistent with other parameter types. Thanks @eevleevs for raising this [issue](https://github.com/jscad/OpenJSCAD.org/issues/1314) I also made adjusted the welcome screen style so that it won't overflow the screen in mobile landscape mode. --- apps/jscad-web/static/main.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/apps/jscad-web/static/main.css b/apps/jscad-web/static/main.css index 6994004..c65023f 100644 --- a/apps/jscad-web/static/main.css +++ b/apps/jscad-web/static/main.css @@ -469,6 +469,10 @@ p { #paramsDiv button { margin-right: 2px; } +#paramsDiv select { + font-size: 10pt; + padding: 2px 4px; +} #paramsDiv .form-line { min-width: 260px; display: flex; @@ -645,6 +649,13 @@ p { } } /* Mobile */ +@media (max-height: 480px) { + #welcome { + top: 20px; + bottom: 20px; + overflow-y: auto; + } +} @media (max-width: 767px) { #welcome { width: 90%;