Increase the maximum width of the search input (#23140)

GitOrigin-RevId: 70619c42cbbb16047a929e773a30ba4c0b5cfa50
This commit is contained in:
Alf Eaton
2025-02-19 09:31:59 +00:00
committed by Copybot
parent d1ddfadd0d
commit 97d7a60f68

View File

@@ -314,6 +314,7 @@ const searchFormTheme = EditorView.theme({
gridTemplateColumns: 'auto auto',
gridTemplateRows: 'auto auto',
gap: 'var(--ol-cm-search-form-gap)',
flex: 1,
},
'@container (max-width: 450px)': {
'.ol-cm-search-controls': {
@@ -335,7 +336,7 @@ const searchFormTheme = EditorView.theme({
borderRadius: '20px',
background: 'white',
width: '100%',
maxWidth: '25em',
maxWidth: '50em',
display: 'inline-flex',
alignItems: 'center',
'& input[type="text"]': {