styles property
Implementation
@css
static final List<StyleRule> styles = [
css('.arcane-nav-link:hover').styles(raw: {
'color': ArcaneColors.onSurface,
'background-color': ArcaneColors.surfaceVariant,
}),
css('.arcane-nav-item.active .arcane-nav-link').styles(raw: {
'color': ArcaneColors.accent,
}),
css('.arcane-header-search input:focus').styles(raw: {
'border-color': ArcaneColors.accent,
'width': '280px',
}),
];