Skip to content

Commit

Permalink
fix overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-lox committed Nov 4, 2024
1 parent c839eea commit feecf77
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions lib/presentation_layer/components/note_card/note_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,9 @@ class NoteCard extends StatelessWidget {
pubkey: note.pubkey,
),
),
Container(
width: MediaQuery.of(context).size.width - 95,
margin: const EdgeInsets.only(left: 5, right: 10),
color: Palette.background,
Expanded(
child: Padding(
padding: const EdgeInsets.only(left: 10.0),
padding: const EdgeInsets.only(left: 10.0, right: 10),
child: Column(
mainAxisAlignment: MainAxisAlignment.end,
crossAxisAlignment: CrossAxisAlignment.start,
Expand Down

0 comments on commit feecf77

Please sign in to comment.