Skip to content

Commit

Permalink
Adjust Stylelint disable comment to avoid Prettier reflow
Browse files Browse the repository at this point in the history
When formatting with Prettier the comment is moved to its own line making Stylelint disable a different one
  • Loading branch information
colinrotherham committed Jun 14, 2023
1 parent fbf8dba commit f748892
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@

// Fix for Firefox < 53
// https://bugzilla.mozilla.org/show_bug.cgi?id=504622
// stylelint-disable selector-type-no-unknown -- Ignore unknown 'x:-moz-any-link'
@supports not (caret-color: auto) {
.govuk-fieldset,
x:-moz-any-link {
// stylelint-disable-next-line selector-type-no-unknown
display: table-cell;
}
}
// stylelint-enable selector-type-no-unknown

.govuk-fieldset__legend {
@include govuk-font($size: 19);
Expand Down

0 comments on commit f748892

Please sign in to comment.