diff --git a/lib/widgets/field_json_search.dart b/lib/widgets/field_json_search.dart index 2dbcc8bb..62407da8 100644 --- a/lib/widgets/field_json_search.dart +++ b/lib/widgets/field_json_search.dart @@ -12,8 +12,13 @@ class JsonSearchField extends StatelessWidget { return ADRawTextField( controller: controller, onChanged: onChanged, - style: kCodeStyle, + style: kCodeStyle.copyWith( + fontSize: Theme.of(context).textTheme.bodySmall?.fontSize, + ), hintText: 'Search..', + hintTextStyle: kCodeStyle.copyWith( + fontSize: Theme.of(context).textTheme.bodySmall?.fontSize, + ), ); } }