Reduce gap between lines in practice modes (#5041)

This commit is contained in:
Kelrap 2026-01-05 12:03:29 -05:00 committed by GitHub
parent f2ae83ef08
commit 306b830035
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

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

View file

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