- minor tweaks to ui across app

This commit is contained in:
2025-11-25 15:49:53 +00:00
parent 0d385061e0
commit 2aa0b4377f
5 changed files with 48 additions and 18 deletions

View File

@@ -21,7 +21,7 @@ const CardHeader = ({ title, status, icon, refetch }: CameraOverviewHeaderProps)
{status && <StatusIndicators status={status} />}
{title}
</h2>
{icon && <FontAwesomeIcon icon={icon} className="size-4" onClick={refetch} />}
{icon && <FontAwesomeIcon icon={icon} className="hover:cursor-pointer" onClick={refetch} />}
</div>
</div>
);