Decrease grammar popup text size in column mode (#3673)
* Decrease grammar popup text size in column mode * simplify --------- Co-authored-by: ggurdin <ggurdin@gmail.com>
This commit is contained in:
parent
60c1a40e94
commit
d8ce170b0d
1 changed files with 2 additions and 2 deletions
|
|
@ -233,7 +233,7 @@ class ConstructNotificationOverlayState
|
||||||
widget.copy ?? widget.construct.lemma,
|
widget.copy ?? widget.construct.lemma,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: FluffyThemes.isColumnMode(context)
|
fontSize: FluffyThemes.isColumnMode(context)
|
||||||
? 32.0
|
? 22.0
|
||||||
: 16.0,
|
: 16.0,
|
||||||
color: AppConfig.gold,
|
color: AppConfig.gold,
|
||||||
fontWeight: FontWeight.bold,
|
fontWeight: FontWeight.bold,
|
||||||
|
|
@ -243,7 +243,7 @@ class ConstructNotificationOverlayState
|
||||||
MorphIcon(
|
MorphIcon(
|
||||||
size: isColumnMode
|
size: isColumnMode
|
||||||
? null
|
? null
|
||||||
: const Size(24.0, 24.0),
|
: const Size(22.0, 22.0),
|
||||||
morphFeature:
|
morphFeature:
|
||||||
MorphFeaturesEnumExtension.fromString(
|
MorphFeaturesEnumExtension.fromString(
|
||||||
widget.construct.category,
|
widget.construct.category,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue