* [task#120474] modify the width of card of thinkpestel and thinkswot widget.

This commit is contained in:
wangzemei
2024-06-19 11:22:56 +08:00
committed by 刘刚
parent 0a6bee340b
commit 79cd3fdebf
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ class thinkPestel extends thinkModel
$block->text ? $block->text : $defaultTitle
)
),
isset($block->steps) ? div(setClass('p-2 relative z-10 col gap-2'), $this->buildItem($block)) : null
isset($block->steps) ? div(setClass('py-2 px-5 relative z-10 col gap-5'), $this->buildItem($block)) : null
)
);
}
+3 -3
View File
@@ -14,7 +14,7 @@ class thinkSwot extends thinkModel
protected function buildQuestion(array $steps): array
{
$questionList = array();
foreach($steps as &$step) $questionList[] = div(setClass('w-80 bg-canvas p-2 shadow'), $this->buildQuestionItem($step));
foreach($steps as &$step) $questionList[] = div(setClass('w-64 bg-canvas p-2 shadow'), $this->buildQuestionItem($step));
return $questionList;
}
@@ -35,7 +35,7 @@ class thinkSwot extends thinkModel
(
setClass('h-full'),
div(setClass('item-step-title text-center text-clip'), set::title($blockTitle), $blockTitle),
!isset($block->steps) ? null : div(setClass('px-5 py-3 flex flex-wrap gap-5 relative z-10'), $this->buildQuestion($block->steps))
!isset($block->steps) ? null : div(setClass('px-4 py-3 flex flex-wrap gap-5 relative z-10'), $this->buildQuestion($block->steps))
)
);
}
@@ -58,7 +58,7 @@ class thinkSwot extends thinkModel
div
(
setClass('model-swot my-1 flex flex-wrap justify-between'),
setStyle(array('min-height' => '254px')),
setStyle(array('min-height' => '254px', 'min-width' => '1160px')),
$this->buildBody()
)
);