chore: reduce padding between lines of message in practice mode (#4962)

This commit is contained in:
ggurdin 2025-12-29 13:57:28 -05:00 committed by GitHub
parent 8d106589cd
commit 82c8c1e4f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -527,7 +527,7 @@ class HtmlMessage extends StatelessWidget {
height: overlayController!
.practiceController.practiceMode !=
MessagePracticeMode.noneSelected
? 16.0
? 8.0
: 0.0,
width: tokenWidth,
),
@ -995,7 +995,7 @@ class HtmlMessage extends StatelessWidget {
height:
overlayController!.practiceController.practiceMode !=
MessagePracticeMode.noneSelected
? 16.0
? 8.0
: 0.0,
width: 0,
),

View file

@ -116,7 +116,7 @@ class TokenPracticeButton extends StatelessWidget {
: Column(
mainAxisSize: MainAxisSize.min,
children: [
const SizedBox(height: 16.0),
const SizedBox(height: 8.0),
SizedBox(height: tokenButtonHeight, child: child),
],
),