Reduce gap between lines in practice modes (#5041)
This commit is contained in:
parent
f2ae83ef08
commit
306b830035
2 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||
),
|
||||
|
|
|
|||
|
|
@ -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),
|
||||
],
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue