Merge pull request #3166 from pangeachat/3158-some-border-in-the-dark-mode-or-a-different-design

chore: add border around word card for emphasis
This commit is contained in:
ggurdin 2025-06-20 10:58:37 -04:00 committed by GitHub
commit f578119352
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -138,6 +138,10 @@ class ReadingAssistanceContentState extends State<ReadingAssistanceContent> {
child: Container(
decoration: BoxDecoration(
color: Theme.of(context).cardColor,
border: Border.all(
color: Theme.of(context).colorScheme.primary,
width: 4.0,
),
borderRadius: const BorderRadius.all(
Radius.circular(AppConfig.borderRadius),
),