Skip to content

Commit 4f8fbfe

Browse files
committed
fix styles.md example
1 parent be93ee9 commit 4f8fbfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

i18n/en-US/articles/styles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class Counter extends Nullstack {
6565
return (
6666
<div
6767
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;' ]}
68+
style={['background-color: black;', this.count > 0 && 'border-color: black;', this.count % 2 === 0 ? 'color: blue;' : 'color: red;' ]}
6969
>
7070
{this.count}
7171
</div>

0 commit comments

Comments
 (0)