From 29b2fd9bf22e612b38b66cfdb831834093ddaf3a Mon Sep 17 00:00:00 2001 From: abdumu Date: Fri, 23 Oct 2020 00:02:09 +0300 Subject: [PATCH] remove same type checking --- 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 9e5a716..9752477 100644 --- a/src/Framework/BootstrapFramework.php +++ b/src/Framework/BootstrapFramework.php @@ -368,7 +368,7 @@ protected function sizing(): array $items['w-'.$btClass] = 'w-'.$twClass; //no percentages in TW for heights except for full - if ($btClass === '100') { + if ($btClass == 100) { $items['h-'.$btClass] = 'h-'.$twClass; } }