Skip to content

Commit

Permalink
fix(rules): allow icon-size (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven authored Jul 19, 2024
1 parent 12ec6dc commit 932bc3a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stylelint-plugin/rules/use-proper-token/token-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ const PROPERTY_TOKEN_MAP = {
'margin-left': ['space'],
'margin-right': ['space'],
'margin-top': ['space'],
'max-height': [],
'max-width': ['breakpoint'],
'min-height': [],
'min-width': ['breakpoint'],
'max-height': ['icon-size'],
'max-width': ['icon-size', 'breakpoint'],
'min-height': ['icon-size'],
'min-width': ['icon-size', 'breakpoint'],
outline: [],
'outline-color': [],
'outline-width': [],
Expand Down

0 comments on commit 932bc3a

Please sign in to comment.