fix input/output title vertical alignment ( set lineheight to revert )

This commit is contained in:
Robin Scholtes 2023-04-17 11:10:11 +12:00
parent 894c4a2ff6
commit bd10dcafb9

View file

@ -26,7 +26,8 @@ body {
cursor: ns-resize; cursor: ns-resize;
} }
/*//////// dolphins mobile ui below ///////////*/ /*//////// mobile ui updates below ///////////*/
/* this is temporary ( unorganised and unrefined )*/
#workspace-wrapper { #workspace-wrapper {
margin-top: 30px; margin-top: 30px;
@ -39,7 +40,7 @@ body {
#input, #input,
#output, #output,
#search { #search {
width: 100vw; width: 100%;
} }
#recipe { #recipe {
@ -60,6 +61,11 @@ body {
justify-content: space-between; justify-content: space-between;
} }
label[for="input-text"],
label[for="output-text"] {
line-height: revert;
}
#content-wrapper { #content-wrapper {
position: absolute; position: absolute;
top: 0; top: 0;
@ -68,7 +74,6 @@ body {
left: 0; left: 0;
} }
/*@TODO: move elsewhere*/
.desktop-only { .desktop-only {
display: none; display: none;
} }