Skip to content

Fix log text & packages list getting truncated improperly on narrow views in Chrome & Firefox.

image

  • Logs get truncated on smaller width screens where the text is cut-off and there's no way to see it. Giving the pre tag an overflow: overlay; value allows scrolling horizontally without wrapping, which we don't want anyways for readability.

image

  • The packages list textarea also gets cut-off in the same conditions so giving it width: -webkit-fill-available;allows it to scale horizontally without hard-coding any values and where Google Chrome fails in resizing it. In addition, hiding the resize handle makes it look aesthetically more pleasing, minimal.

Merge request reports