Skip to content

Commit

Permalink
minor style fixes (#73)
Browse files Browse the repository at this point in the history
Makes the "choice" parameter style consistent with other parameter
types.

Thanks @eevleevs for raising this
[issue](jscad/OpenJSCAD.org#1314)

I also made adjusted the welcome screen style so that it won't overflow
the screen in mobile landscape mode.
  • Loading branch information
platypii authored Dec 26, 2023
1 parent f532e4b commit 48e6f53
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions apps/jscad-web/static/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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%;
Expand Down

0 comments on commit 48e6f53

Please sign in to comment.