diff --git a/lib/widgets/content/cloud_file_collection.dart b/lib/widgets/content/cloud_file_collection.dart index 1322428..16c594e 100644 --- a/lib/widgets/content/cloud_file_collection.dart +++ b/lib/widgets/content/cloud_file_collection.dart @@ -660,14 +660,6 @@ class _CloudFileListEntry extends HookConsumerWidget { size: 24, ), const Gap(4), - Text( - 'Sensitive Content', - style: TextStyle( - color: Colors.white, - fontWeight: FontWeight.w600, - ), - ), - // Show categories for sensitive content Text( file.sensitiveMarks .map( @@ -680,9 +672,17 @@ class _CloudFileListEntry extends HookConsumerWidget { .join(' ยท '), style: const TextStyle( color: Colors.white, + fontWeight: FontWeight.w600, ), textAlign: TextAlign.center, ), + Text( + 'Sensitive Content', + style: TextStyle( + color: Colors.white, + fontSize: 13, + ), + ), const Gap(4), Text( 'Tap to Reveal', @@ -693,7 +693,7 @@ class _CloudFileListEntry extends HookConsumerWidget { ), ], ), - ), + ).padding(horizontal: 24, vertical: 16), ), ), ],