Skip to content

Commit

Permalink
Update border radius of quoted content
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangdat committed Oct 16, 2024
1 parent 69faef4 commit 8af518d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/pages/chat/events/reply_content_style.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ReplyContentStyle {
color: ownMessage
? LinagoraSysColors.material().primaryContainer
: LinagoraSysColors.material().onSurface.withOpacity(0.08),
borderRadius: BorderRadius.circular(12),
borderRadius: BorderRadius.circular(8.0),
);
}

Expand Down
2 changes: 1 addition & 1 deletion lib/widgets/file_widget/file_tile_widget_style.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class FileTileWidgetStyle {
? LinagoraSysColors.material().primaryContainer
: LinagoraSysColors.material().onSurface.withOpacity(0.08);

BorderRadiusGeometry get borderRadius => BorderRadius.circular(12);
BorderRadiusGeometry get borderRadius => BorderRadius.circular(8.0);

EdgeInsets get paddingIcon => const EdgeInsets.only(right: 8);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'package:flutter/material.dart';

class TwakeLinkPreviewItemStyle {
static const double radiusBorder = 20;
static const double radiusBorder = 8.0;

static const double linkIconSize = 40;

Expand Down

0 comments on commit 8af518d

Please sign in to comment.