diff --git a/packages/smooth_app/lib/cards/product_cards/knowledge_panels/knowledge_panel_title_card.dart b/packages/smooth_app/lib/cards/product_cards/knowledge_panels/knowledge_panel_title_card.dart index ad5ed5fe867..a765dd3a619 100644 --- a/packages/smooth_app/lib/cards/product_cards/knowledge_panels/knowledge_panel_title_card.dart +++ b/packages/smooth_app/lib/cards/product_cards/knowledge_panels/knowledge_panel_title_card.dart @@ -47,7 +47,10 @@ class KnowledgePanelTitleCard extends StatelessWidget { iconWidget = []; } return Padding( - padding: const EdgeInsets.only(top: SMALL_SPACE), + padding: const EdgeInsets.only( + top: VERY_SMALL_SPACE, + bottom: VERY_SMALL_SPACE, + ), child: Row( children: [ ...iconWidget, diff --git a/packages/smooth_app/lib/pages/onboarding/welcome_page.dart b/packages/smooth_app/lib/pages/onboarding/welcome_page.dart index 682a8516b17..e0d8ba56130 100644 --- a/packages/smooth_app/lib/pages/onboarding/welcome_page.dart +++ b/packages/smooth_app/lib/pages/onboarding/welcome_page.dart @@ -56,7 +56,8 @@ class WelcomePage extends StatelessWidget { inputDecoration: InputDecoration( enabledBorder: const OutlineInputBorder( borderSide: BorderSide( - color: Color.fromARGB(255, 235, 235, 235)), + color: Color.fromARGB(255, 235, 235, 235), + ), borderRadius: ROUNDED_BORDER_RADIUS, ), filled: Theme.of(context).colorScheme.brightness ==