Skip to content

Commit

Permalink
fix(SLB-306): update grid layout
Browse files Browse the repository at this point in the history
  • Loading branch information
HagerDakroury committed May 27, 2024
1 parent 49156c3 commit c1797ee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ export function BlockInfoGrid(props: BlockInfoGridFragment) {
<div className="container-content">
<div
className={
'flex flex-col md:flex-row flex-wrap justify-center gap-12 lg:gap-16 items-center md:items-start'
'flex flex-col md:grid md:grid-cols-2 lg:grid-cols-3 flex-wrap justify-center gap-12 items-center md:items-start'
}
>
{props.gridItems.map((item, index) => (
<div
key={index}
className="flex flex-col items-center justify-start gap-4 px-3 md:px-4 text-center md:max-w-[20rem] lg:max-w-[24rem]"
className="flex flex-col items-center justify-start gap-4 px-3 md:px-4 text-center"
>
{item?.icon && iconMap[item?.icon]}
<div className="flex flex-col items-center justify-center gap-3">
Expand Down

0 comments on commit c1797ee

Please sign in to comment.