fix: adjust select option button hover and padding (#4323)

This commit is contained in:
Richard Shiue
2024-01-07 21:16:48 +08:00
committed by GitHub
parent 94bdefbf01
commit c4ebccafd4
2 changed files with 14 additions and 3 deletions

View File

@ -139,11 +139,14 @@ class SelectOptionTagCell extends StatelessWidget {
child: Align(
alignment: AlignmentDirectional.centerStart,
child: Padding(
padding: const EdgeInsets.all(5.0),
padding: const EdgeInsets.symmetric(
horizontal: 5.0,
vertical: 4.0,
),
child: SelectOptionTag(
option: option,
padding:
const EdgeInsets.symmetric(horizontal: 8, vertical: 1),
const EdgeInsets.symmetric(horizontal: 8),
),
),
),