Skip to content

Commit

Permalink
Make visited items slightly more faded
Browse files Browse the repository at this point in the history
  • Loading branch information
Mosc committed Nov 15, 2023
1 parent 5b93ba5 commit be53f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/item/widgets/item_data_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class ItemDataTile extends StatelessWidget {
child: Padding(
padding: padding,
child: Opacity(
opacity: visited ? 0.75 : 1,
opacity: visited ? 2 / 3 : 1,
child: AnimatedSize(
alignment: Alignment.topCenter,
duration: AppAnimation.emphasized.duration,
Expand Down

0 comments on commit be53f10

Please sign in to comment.