chore: adjust height (#5558)

This commit is contained in:
Nathan.fooo
2024-06-17 21:38:05 +08:00
committed by GitHub
parent 4a126e17ce
commit 21a497924c
2 changed files with 24 additions and 1 deletions

View File

@ -94,7 +94,9 @@ class SelectOptionTag extends StatelessWidget {
color: AFThemeExtension.of(context).textColor,
textAlign: textAlign,
);
return Container(
height: 20,
padding: onRemove == null ? padding : padding.copyWith(right: 2.0),
decoration: BoxDecoration(
color: optionColor,
@ -122,4 +124,3 @@ class SelectOptionTag extends StatelessWidget {
);
}
}