From defe0db2fd65d4fc0030f878f33f809596c9f320 Mon Sep 17 00:00:00 2001 From: Martin Pfundmair Date: Tue, 25 May 2021 14:00:19 +0900 Subject: [PATCH] fix class name w-full w-fill does not seem to exist within tailwindcss, so I'm thinking this might have to be w-full --- src/Framework/BootstrapFramework.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Framework/BootstrapFramework.php b/src/Framework/BootstrapFramework.php index 1d6a617..a4838e8 100644 --- a/src/Framework/BootstrapFramework.php +++ b/src/Framework/BootstrapFramework.php @@ -698,7 +698,7 @@ protected function listGroups(): array { $items = [ 'list-group' => 'flex flex-col pl-0 mb-0 border rounded border-gray-300', - 'list-group-item-action' => 'w-fill', + 'list-group-item-action' => 'w-full', 'list-group-item' => 'relative block py-3 px-6 -mb-px border border-r-0 border-l-0 border-gray-300 no-underline', 'list-group-flush' => '', ];