Avoid awkward wrapping

This commit is contained in:
Gwilym Inzani 2024-04-20 12:48:31 +01:00
parent 141a77af80
commit 4899ccd5aa

View file

@ -67,6 +67,9 @@ function BacktraceCopyDisplay({
const BacktraceInputBox = styled.input` const BacktraceInputBox = styled.input`
font-size: larger; font-size: larger;
background-color: #eee; background-color: #eee;
border: 1px solid #aaa;
border-radius: 4px;
min-width: 0;
flex-grow: 999; flex-grow: 999;
`; `;
@ -76,7 +79,6 @@ const BacktraceWrapper = styled.section`
gap: 10px; gap: 10px;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
flex-wrap: wrap;
`; `;
const BacktraceCopyButton = styled.button` const BacktraceCopyButton = styled.button`