From 29f88f2810dfbfe7290b6f85a41cbc4ce338e0bd Mon Sep 17 00:00:00 2001 From: Bibash Shrestha Date: Mon, 16 Oct 2023 16:28:41 +0545 Subject: [PATCH] feat: Design update #2010 --- .../widget/security_level_widget.dart | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/security_level_widget.dart b/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/security_level_widget.dart index 567ac9f32..a5ff1fabc 100644 --- a/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/security_level_widget.dart +++ b/lib/dashboard/drawer/ssi/oidc4vc_settngs/widget/security_level_widget.dart @@ -36,22 +36,12 @@ class SecurityLevelWidget extends StatelessWidget { children: [ Text( l10n.security_level_title, - style: Theme.of(context) - .textTheme - .titleMedium - ?.copyWith( - color: Theme.of(context).colorScheme.onPrimary, - ), + style: Theme.of(context).textTheme.drawerItemTitle, ), const SizedBox(height: 10), Text( l10n.security_level_subTitle, - style: Theme.of(context) - .textTheme - .bodyMedium - ?.copyWith( - color: Theme.of(context).colorScheme.onPrimary, - ), + style: Theme.of(context).textTheme.drawerItemSubtitle, ), ], ),