Skip to content

Commit

Permalink
chore: Design adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
krille-chan committed Feb 2, 2025
1 parent a21fc88 commit a9a23c6
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion assets/l10n/intl_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -2830,5 +2830,6 @@
"server": {}
}
},
"appWantsToUseForLoginDescription": "You hereby allow the app and website to share information about you."
"appWantsToUseForLoginDescription": "You hereby allow the app and website to share information about you.",
"open": "Open"
}
2 changes: 1 addition & 1 deletion lib/config/themes.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import 'package:flutter/services.dart';
import 'app_config.dart';

abstract class FluffyThemes {
static const double columnWidth = 360.0;
static const double columnWidth = 380.0;

static const double navRailWidth = 64.0;

Expand Down
2 changes: 1 addition & 1 deletion lib/pages/chat/events/html_message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ class HtmlMessage extends StatelessWidget {
),
style: linkStyle,
),
style: const TextStyle(height: 1),
style: const TextStyle(height: 1.25),
),
),
);
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/url_launcher.dart
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class UrlLauncher {
context: context,
title: L10n.of(context).openLinkInBrowser,
message: url,
okLabel: L10n.of(context).yes,
okLabel: L10n.of(context).open,
cancelLabel: L10n.of(context).cancel,
);
if (consent != OkCancelResult.ok) return;
Expand Down

0 comments on commit a9a23c6

Please sign in to comment.