style(logs): widen the row-count selector in the log modals

At 70px the selector truncated its larger values, so the chosen row
count was hard to read in the panel, Xray and AmneziaWG log modals.
This commit is contained in:
Sanaei
2026-09-15 22:06:21 +02:00
parent e8bab17c2f
commit 5fe4f241c1
3 changed files with 3 additions and 3 deletions
@@ -122,7 +122,7 @@ export default function AmneziaWGLogModal({ open, onClose }: AmneziaWGLogModalPr
<Select
value={rows}
size="small"
style={{ width: 70 }}
style={{ width: 100 }}
onChange={setRows}
options={[
{ value: '20', label: '20' },
+1 -1
View File
@@ -107,7 +107,7 @@ export default function LogModal({ open, onClose }: LogModalProps) {
<Select
value={rows}
size="small"
style={{ width: 70 }}
style={{ width: 100 }}
onChange={setRows}
options={[
{ value: '20', label: '20' },
+1 -1
View File
@@ -175,7 +175,7 @@ export default function XrayLogModal({ open, onClose }: XrayLogModalProps) {
<Select
value={rows}
size="small"
style={{ width: 70 }}
style={{ width: 100 }}
onChange={setRows}
options={[
{ value: '20', label: '20' },