Skip to content

Commit

Permalink
Merge pull request #25 from lara-zeus/fix-width
Browse files Browse the repository at this point in the history
fix width
  • Loading branch information
atmonshi authored Sep 2, 2023
2 parents bbcbf81 + d131cb2 commit d1f68fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Models/Columns.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public function getRows(): array
{
return [
['key' => 'headerColumn', 'name' => __('top'), 'class' => 'w-full col-span-12 md:col-span-12'],
['key' => 'rightColumn', 'name' => __('right'), 'class' => 'w-1/4 col-span-12 md:col-span-3'],
['key' => 'middleColumn', 'name' => __('middle'), 'class' => 'w-2/4 col-span-12 md:col-span-6'],
['key' => 'leftColumn', 'name' => __('left'), 'class' => 'w-1/4 col-span-12 md:col-span-3'],
['key' => 'rightColumn', 'name' => __('right'), 'class' => 'w-full col-span-12 md:col-span-3'],
['key' => 'middleColumn', 'name' => __('middle'), 'class' => 'w-full col-span-12 md:col-span-6'],
['key' => 'leftColumn', 'name' => __('left'), 'class' => 'w-full col-span-12 md:col-span-3'],
['key' => 'footerColumn', 'name' => __('bottom'), 'class' => 'w-full col-span-12 md:col-span-12'],
];
}
Expand Down

0 comments on commit d1f68fa

Please sign in to comment.