Shrink normal device-seen dots in event history chart

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
rzuasti
2026-06-07 15:49:44 -04:00
co-authored by Claude Opus 4.8
parent 4a19ab34e2
commit 3d7c4a1323
@@ -169,7 +169,7 @@ class _EventChart extends StatelessWidget {
ColorScheme scheme,
) => switch (type) {
DeviceEventType.newDevice => (radius: 9.0, color: scheme.tertiary),
DeviceEventType.deviceSeen => (radius: 6.0, color: scheme.tertiary),
DeviceEventType.deviceSeen => (radius: 4.0, color: scheme.tertiary),
DeviceEventType.deviceChanged => (radius: 7.0, color: scheme.error),
DeviceEventType.deviceBackOnline => (radius: 7.0, color: scheme.primary),
};