Skip to content

Commit

Permalink
chore: Follow up sso button border
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Apr 28, 2024
1 parent f4b66e1 commit 0d13a99
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/pages/homeserver_picker/homeserver_picker_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,12 @@ class _LoginButton extends StatelessWidget {
width: double.infinity,
child: OutlinedButton.icon(
style: OutlinedButton.styleFrom(
side: BorderSide.none,
side: FluffyThemes.isColumnMode(context)
? BorderSide.none
: BorderSide(
color: Theme.of(context).colorScheme.outlineVariant,
width: 1,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(99),
),
Expand Down

0 comments on commit 0d13a99

Please sign in to comment.