We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be93ee9 commit 4f8fbfeCopy full SHA for 4f8fbfe
i18n/en-US/articles/styles.md
@@ -65,7 +65,7 @@ class Counter extends Nullstack {
65
return (
66
<div
67
class={['number', this.count > 0 && 'bigger-than-zero', this.count % 2 === 0 ? 'even' : 'odd' ]}
68
- style={['background-color: black;', this.count > 0 && 'border-color: black;', this.count % 2 === 0 ? 'color: blue;' : 'color-red;' ]}
+ style={['background-color: black;', this.count > 0 && 'border-color: black;', this.count % 2 === 0 ? 'color: blue;' : 'color: red;' ]}
69
>
70
{this.count}
71
</div>
0 commit comments