fix: OnePageCard elevation

This commit is contained in:
Christian Pauly 2021-05-31 21:17:00 +02:00
commit 0ef219866c
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ class OnePageCard extends StatelessWidget {
vertical:
max((MediaQuery.of(context).size.height - 800) / 2, 12),
),
child: SafeArea(child: Card(elevation: 1, child: child)),
child: SafeArea(child: Card(child: child)),
),
);
}