[#181] disable tooltips on mobile UI

This commit is contained in:
Robin Scholtes 2023-05-02 20:42:57 +12:00
parent 7fff6f51dc
commit 8bed81c5ee
5 changed files with 15 additions and 37 deletions

View file

@ -33,9 +33,9 @@
bottom: 0;
}
/*#IO {*/
/* padding-bottom: var(--controls-height);*/
/*}*/
#IO {
padding-bottom: var(--controls-height);
}
#recipe.maximised-pane,
#input.maximised-pane,

View file

@ -2,7 +2,8 @@
--banner-height: 40px;
--controls-height: 70px;
--workspace-height: calc( 100vh - var(--banner-height) - var(--controls-height));
--recipe-height: 38vh;
--recipe-height: 22vh;
--operations-height: 89px;
/* io gets the remaining space */
--io-height: calc(100vh - var(--banner-height) - var(--controls-height) - var(--recipe-height) - var(--operations-height));
}