Skip to content

Commit

Permalink
responsive home
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Jan 24, 2024
1 parent c6ba427 commit 3bacbb6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/index/MapsList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ export function MapsList() {
}

return (
<Columns>
<Columns multiline>
{data.data.map(d => (
<Columns.Column key={d.slug}>
<Card>
<Columns.Column key={d.slug} mobile={{ size: 12 }} tablet={{ size: 'half'}} desktop={{ size: 4 }} widescreen={{ size: 3 }}>
<Card px={2}>
<Card.Header>
<Card.Header.Title>{d.title}</Card.Header.Title>
<Card.Header.Icon>{d.visibility === 'public' ? <i className="fas fa-globe"></i> : <i className="fas fa-lock"></i>}</Card.Header.Icon>
Expand Down

0 comments on commit 3bacbb6

Please sign in to comment.