Skip to content

Commit

Permalink
stylelint: media-feature-parentheses-space-inside
Browse files Browse the repository at this point in the history
  • Loading branch information
jelly authored and martinpitt committed Jun 24, 2022
1 parent 0166d14 commit a6bf14c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"max-line-length": null,
"media-feature-name-case": null,
"media-feature-name-no-vendor-prefix": null,
"media-feature-parentheses-space-inside": null,
"media-feature-range-operator-space-after": null,
"media-feature-range-operator-space-before": null,
"media-query-list-comma-newline-after": null,
Expand Down
4 changes: 2 additions & 2 deletions pkg/sosreport/sosreport.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
display: none;
}

@media ( max-width: $pf-global--breakpoint--md - 1 ) {
@media (max-width: $pf-global--breakpoint--md - 1) {
.show-only-when-wide {
display: none !important;
}
}

@media ( min-width: $pf-global--breakpoint--md ) {
@media (min-width: $pf-global--breakpoint--md) {
.show-only-when-narrow {
display: none !important;
}
Expand Down
4 changes: 2 additions & 2 deletions pkg/storaged/storage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -425,13 +425,13 @@ td button.pf-m-link {
padding: 0px;
}

@media ( max-width: $pf-global--breakpoint--md - 1 ) {
@media (max-width: $pf-global--breakpoint--md - 1) {
.show-only-when-wide {
display: none;
}
}

@media ( min-width: $pf-global--breakpoint--md ) {
@media (min-width: $pf-global--breakpoint--md) {
.show-only-when-narrow {
display: none;
}
Expand Down

0 comments on commit a6bf14c

Please sign in to comment.