Ion padding

This commit is contained in:
Max Lynch
2021-01-09 12:20:30 -06:00
parent 99bbfdda4b
commit b9e7b010ae
2 changed files with 1 additions and 10 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ const Home = () => (
<IonTitle>Inbox</IonTitle>
</IonToolbar>
</IonHeader>
<IonContent>
<IonContent className="ion-padding">
{homeItems.map((i, index) => (
<HomeCard {...i} key={index} />
))}
-9
View File
@@ -1,9 +0,0 @@
const Dialog = () => (
<div className="fixed inset-0 w-full h-full flex align-center justify-center">
<div className="w-200 bg-white rounded-xl">
<div className="flex-1">{children}</div>
</div>
</div>
);
export default Dialog;