Skip to content

Commit fae6c5b

Browse files
authored
Merge pull request #162 from inforithmics/MakeOffsetAndStepVisible
for evaluating nth-child(2) make step and offset visible
2 parents 1b9ec50 + 920c651 commit fae6c5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ExCSS/Selectors/ChildSelector.cs

+2-2
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)