diff options
Diffstat (limited to 'src/containers/Home.tsx')
-rw-r--r-- | src/containers/Home.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/containers/Home.tsx b/src/containers/Home.tsx index 697cc66..3af5379 100644 --- a/src/containers/Home.tsx +++ b/src/containers/Home.tsx @@ -29,9 +29,9 @@ const cards = [ const Home: React.FC = () => ( <Page title="Главная" actions={[{ name: 'Связаться с нами', variant: 'outlined' }]}> - <div className="grid grid-flow-row grid-cols-3"> + <div className="grid grid-flow-row lg:grid-cols-3"> {cards.map(card => ( - <Paper key={card.route} variant="outlined"> + <Paper key={card.route} variant="outlined" className="m-5"> <div className="h-full flex flex-col justify-between"> <img className="h-60" src={card.src} alt="Накладная" /> <div className="flex flex-col text-center"> |