fix: admin/internet: bad alignment for flags
Massimo Melina committed
Jun 11, 2026 at 20:38 UTC
196c83d70a8314ec52af351b349ef93319eae6da
1 file changed
+1
-1
admin/src/mui.ts
+1
-1
@@ -339,7 +339,7 @@ export function Country({ code, ip, def, long, short }: { code: string, ip?: str
339
h(Box as any, {
340
className: `fflag fflag-${code.toUpperCase()}`,
341
component: 'span',
342
- sx: { mr: 1 },
342
+ sx: { mr: 1, verticalAlign: 'text-bottom' },
343
}),
344
long ? country.name + prefix(' (', short && code, ')') : code
345
) )