center help and print dialogs vertically

This commit is contained in:
Stewart Allen 2020-05-14 22:23:51 -04:00
commit aa1053452c
2 changed files with 7 additions and 6 deletions

View file

@ -15,6 +15,7 @@
# FDM
* `F` control for size of purge block (with 0=disabled)
* `F` add separate fill speed control
* `F` manual support addition / control
* `F` polishing and other non-planar work

View file

@ -216,10 +216,10 @@ input[type=range]::-moz-focus-outer {
#print {
position: fixed;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
top: 50px;
top: 50%;
left: 50%;
color: black;
border: 10px solid #ddd;
@ -345,10 +345,10 @@ input[type=range]::-moz-focus-outer {
#help {
position: fixed;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: left;
top: 50px;
top: 50%;
left: 50%;
color: black;
border-radius: 10px;