You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the dlgProps-form there's a textarea with ID prop-trackers that's resizeable, however the containing div isn't, so if I drag the corner outside the div it can't be shrinked anymore.
The easy solution would be to resize: none the textarea:
#prop-trackers {
height: 5em;
resize: none;
}
or to set #dlgProps with width: auto (not tested).
The text was updated successfully, but these errors were encountered:
In the
dlgProps-form
there's a textarea with IDprop-trackers
that's resizeable, however the containingdiv
isn't, so if I drag the corner outside thediv
it can't be shrinked anymore.The easy solution would be to
resize: none
the textarea:or to set
#dlgProps
withwidth: auto
(not tested).The text was updated successfully, but these errors were encountered: