Skip to content

Commit

Permalink
Merge pull request #162 from inforithmics/MakeOffsetAndStepVisible
Browse files Browse the repository at this point in the history
for evaluating nth-child(2) make step and offset visible
  • Loading branch information
TylerBrinks authored Sep 29, 2023
2 parents 1b9ec50 + 920c651 commit fae6c5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ExCSS/Selectors/ChildSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ namespace ExCSS
public abstract class ChildSelector : StylesheetNode, ISelector
{
private readonly string _name;
protected int Step;
protected int Offset;
public int Step { get; private set; }
public int Offset { get; private set; }
protected ISelector Kind;

protected ChildSelector(string name)
Expand Down

0 comments on commit fae6c5b

Please sign in to comment.