diff --git a/apps/rebreak-native/app/(app)/blocker.tsx b/apps/rebreak-native/app/(app)/blocker.tsx index e2eb8fe..bf96943 100644 --- a/apps/rebreak-native/app/(app)/blocker.tsx +++ b/apps/rebreak-native/app/(app)/blocker.tsx @@ -480,79 +480,82 @@ function CustomFilterOverview({ borderRadius: 16, borderWidth: 1, borderColor: colors.border, - padding: 14, - flexDirection: 'row', - alignItems: 'center', - gap: 12, + paddingHorizontal: 14, + paddingVertical: 10, + gap: 8, }} > - {/* Left: title + counter + bar */} - + {/* Top row: title + legend on left, count badge + add button on right */} + {t('blocker.custom_filter_overview_title')} - - {t('blocker.custom_filter_overview_count', { count: total, max })} - - - {/* Split progress bar */} + + + + {webCount} Web + + + + + + {mailCount} Mail + + + - - - - - {/* Legend dots */} - - - - - {webCount} Web - - - - - - {mailCount} Mail - - + + {t('blocker.custom_filter_overview_count', { count: total, max })} + + + + - {/* Right: add button */} - - - + + + ); }