Skip to content

Commit 920c651

Browse files
committed
for evaluating nth-child(2) make step and offset visible
1 parent 1803173 commit 920c651

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ExCSS/Selectors/ChildSelector.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ namespace ExCSS
55
public abstract class ChildSelector : StylesheetNode, ISelector
66
{
77
private readonly string _name;
8-
protected int Step;
9-
protected int Offset;
8+
public int Step { get; private set; }
9+
public int Offset { get; private set; }
1010
protected ISelector Kind;
1111

1212
protected ChildSelector(string name)

0 commit comments

Comments
 (0)