Skip to content

Commit

Permalink
design tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
RedyAu committed Nov 9, 2024
1 parent 9778695 commit c000218
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ui/base/songs/filter/key/widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class _KeyFilterCardState extends ConsumerState<KeyFilterCard> {
final selectableModes = ref.watch(selectableModesProvider);

return Card(
elevation: isActive ? 7 : 0,
elevation: isActive ? 3 : 0,
color: isActive ? Theme.of(context).colorScheme.secondaryContainer : null,
child: ListTile(
contentPadding: const EdgeInsets.only(left: 15),
Expand Down
3 changes: 2 additions & 1 deletion lib/ui/base/songs/filter/multiselect-tags/widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class LFilterChipsState extends ConsumerState<FilterChips> {
bool active() => filterState.containsKey(widget.field);

return Card(
elevation: active() ? 7 : 0,
elevation: active() ? 3 : 0,
color: active() ? Theme.of(context).colorScheme.secondaryContainer : null,
child: ListTile(
contentPadding: const EdgeInsets.only(left: 15),
Expand Down Expand Up @@ -184,6 +184,7 @@ class LFilterChip extends StatelessWidget {
return Theme.of(context).colorScheme.surfaceContainerHighest;
}
}),
padding: EdgeInsets.symmetric(horizontal: 8),
labelPadding: EdgeInsets.only(left: leading != null ? 0 : 5, right: 5),
label: Row(
children: [
Expand Down

0 comments on commit c000218

Please sign in to comment.