fix: admin/config: broken layout on mobile

Massimo Melina committed Nov 12, 2023 at 11:13 UTC 1e201130850079ff5144d405453760f12996a6a9
1 file changed +1 -1
admin/src/ConfigFilePage.ts
+1 -1
@@ -29,7 +29,7 @@ export default function ConfigFilePage() {
29 sx: modifiedSx(text !== saved),
30 onClick: save,
31 }),
32 - h(Alert, { severity: 'warning', sx: { flex: 1 } }, "Be careful, you can easily break things here"),
32 + h(Alert, { severity: 'warning', sx: { flex: 1, minWidth: '10em' } }, "Be careful, you can easily break things here"),
33 ) : h(Btn, {
34 icon: EditNote,
35 variant: 'outlined',