From decc231fdaf9039baca7625383188694a741b299 Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Mon, 24 May 2021 11:09:17 +0200 Subject: [PATCH] design: Minor improvements of login buttons --- lib/pages/views/sign_up_view.dart | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/pages/views/sign_up_view.dart b/lib/pages/views/sign_up_view.dart index f32acde79..cedb03971 100644 --- a/lib/pages/views/sign_up_view.dart +++ b/lib/pages/views/sign_up_view.dart @@ -144,10 +144,10 @@ class SignUpView extends StatelessWidget { primary: Theme.of(context).secondaryHeaderColor, onPrimary: Theme.of(context).textTheme.bodyText1.color, - elevation: 2, + //elevation: 1, ), onPressed: () => context.vRouter.push('/login'), - child: Text(L10n.of(context).login), + child: Text(L10n.of(context).login.toUpperCase()), ), ), if (controller.passwordLoginSupported && @@ -160,10 +160,9 @@ class SignUpView extends StatelessWidget { primary: Theme.of(context).secondaryHeaderColor, onPrimary: Theme.of(context).textTheme.bodyText1.color, - elevation: 2, ), onPressed: controller.ssoLoginAction, - child: Text(L10n.of(context).useSSO), + child: Text(L10n.of(context).useSSO.toUpperCase()), ), ), ]),