chore: add border around word card for emphasis

This commit is contained in:
avashilling 2025-06-20 10:22:22 -04:00
parent d9824a7f40
commit fb52b8b1f0

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),
),