chore: Follow up width

This commit is contained in:
Krille 2023-08-16 07:30:48 +02:00
parent f051fc1851
commit 8ed54497f9
No known key found for this signature in database

View file

@ -194,7 +194,9 @@ class _StoryButtonState extends State<_StoryButton> {
@override
Widget build(BuildContext context) {
return InkWell(
return SizedBox(
width: 82,
child: InkWell(
onHover: _onHover,
borderRadius: BorderRadius.circular(7),
onTap: widget.onPressed,
@ -280,6 +282,7 @@ class _StoryButtonState extends State<_StoryButton> {
),
),
),
),
);
}
}