From bd10dcafb9de2b8388bcd5c05c7ff3b93d2c67dc Mon Sep 17 00:00:00 2001 From: Robin Scholtes Date: Mon, 17 Apr 2023 11:10:11 +1200 Subject: [PATCH] fix input/output title vertical alignment ( set lineheight to revert ) --- src/web/stylesheets/layout/_structure.css | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/web/stylesheets/layout/_structure.css b/src/web/stylesheets/layout/_structure.css index 6b36cd2d..05ec304e 100755 --- a/src/web/stylesheets/layout/_structure.css +++ b/src/web/stylesheets/layout/_structure.css @@ -26,7 +26,8 @@ body { cursor: ns-resize; } -/*//////// dolphins mobile ui below ///////////*/ +/*//////// mobile ui updates below ///////////*/ +/* this is temporary ( unorganised and unrefined )*/ #workspace-wrapper { margin-top: 30px; @@ -39,7 +40,7 @@ body { #input, #output, #search { - width: 100vw; + width: 100%; } #recipe { @@ -60,6 +61,11 @@ body { justify-content: space-between; } +label[for="input-text"], +label[for="output-text"] { + line-height: revert; +} + #content-wrapper { position: absolute; top: 0; @@ -68,7 +74,6 @@ body { left: 0; } -/*@TODO: move elsewhere*/ .desktop-only { display: none; }