From e5f1d8188a8948f2c488176deab8fdde0203b6c5 Mon Sep 17 00:00:00 2001 From: Lee Evans Date: Mon, 28 Oct 2024 23:28:26 +0000 Subject: [PATCH] Reduce the size of the pin --- src/Filament/Pages/Configure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Filament/Pages/Configure.php b/src/Filament/Pages/Configure.php index 6b6c01c..83266ef 100644 --- a/src/Filament/Pages/Configure.php +++ b/src/Filament/Pages/Configure.php @@ -242,7 +242,7 @@ protected function enable2FactorAuthGroupComponent(): Component ->length(config('two-factor.totp.digits')) ->autocomplete(false) ->live() - ->extraInputAttributes(['class' => 'text-center', 'style' => 'font-size:3em; letter-spacing:1rem']) + ->extraInputAttributes(['class' => 'text-center', 'style' => 'font-size:2.6em; letter-spacing:1rem']) ->afterStateUpdated(function ($state) { $requiredLength = config('two-factor.totp.digits'); if (strlen($state) == $requiredLength) {