styles property
Implementation
@css
static final List<StyleRule> styles = [
css('.arcane-game-tile:hover').styles(raw: {
'border-color': ArcaneColors.accent,
'box-shadow': ArcaneEffects.shadowMd,
}),
css('.arcane-game-tile:focus').styles(raw: {
'outline': 'none',
'border-color': ArcaneColors.accent,
'box-shadow': '0 0 0 2px ${ArcaneColors.accentContainer}',
}),
];