[ui] UI theme should match repertory blue #61
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
2025-09-04 13:10:16 -05:00
parent ad88f369bc
commit 8797134903

View File

@@ -306,7 +306,7 @@ class _FramedBox extends StatelessWidget {
required this.icon,
this.onTap,
this.iconColor,
this.iconSize = 22,
this.iconSize = 32,
});
@override
@@ -359,7 +359,7 @@ class _GearBadge extends StatelessWidget {
@override
Widget build(BuildContext context) {
return _FramedBox(icon: Icons.settings, onTap: onTap, iconSize: 22);
return _FramedBox(icon: Icons.settings, onTap: onTap);
}
}
@@ -388,7 +388,6 @@ class _ToggleFramed extends StatelessWidget {
icon: icon,
iconColor: iconColor,
onTap: mounted == null ? null : onPressed,
iconSize: 24,
);
}
}