chore: increase padding in span card scroll view to prevent choice animation overflow (#5062)
This commit is contained in:
parent
6343c18ad1
commit
92da1310b4
1 changed files with 4 additions and 1 deletions
|
|
@ -157,7 +157,10 @@ class SpanCardState extends State<SpanCard> {
|
|||
child: SingleChildScrollView(
|
||||
controller: scrollController,
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(12.0),
|
||||
padding: const EdgeInsets.symmetric(
|
||||
vertical: 12.0,
|
||||
horizontal: 24.0,
|
||||
),
|
||||
child: Column(
|
||||
spacing: 12.0,
|
||||
children: [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue