diff --git a/lib/components/diary_card/large_diary_card/large_diary_card_view.dart b/lib/components/diary_card/large_diary_card/large_diary_card_view.dart index bb5fb4b..a0f7a89 100644 --- a/lib/components/diary_card/large_diary_card/large_diary_card_view.dart +++ b/lib/components/diary_card/large_diary_card/large_diary_card_view.dart @@ -63,14 +63,10 @@ class LargeDiaryCardComponent extends StatelessWidget with BasicCardLogic { maxLines: getMaxLines(diary.contentText), style: textStyle.bodyMedium, ), - Row( - mainAxisAlignment: MainAxisAlignment.spaceBetween, - children: [ - Text( - DateFormat.yMMMd().add_Hms().format(diary.time), - style: textStyle.labelSmall, - ), - ], + Text( + DateFormat.yMMMd().add_Hms().format(diary.time), + style: textStyle.labelSmall, + overflow: TextOverflow.ellipsis, ) ], ),