Skip to content

fix: Use media-feature-range-notation#39

Merged
jongwooo merged 1 commit intomainfrom
hotfix/use-media-feature-range-notation
Apr 3, 2023
Merged

fix: Use media-feature-range-notation#39
jongwooo merged 1 commit intomainfrom
hotfix/use-media-feature-range-notation

Conversation

@jongwooo
Copy link
Copy Markdown
Owner

@jongwooo jongwooo commented Apr 3, 2023

Description

Fixes #38

Use media-feature-range-notation. For more information, see https://stylelint.io/user-guide/rules/media-feature-range-notation/

AS-IS

@media (max-width: 700px) {
	:not(pre) > code[class*="language-"] {
		font-size: 0.875rem;
	}
}

TO-BE

@media (width <= 700px) {
	:not(pre) > code[class*="language-"] {
		font-size: 0.875rem;
	}
}

@jongwooo jongwooo added the bug Something isn't working label Apr 3, 2023
@jongwooo jongwooo self-assigned this Apr 3, 2023
@jongwooo jongwooo merged commit 807aa2a into main Apr 3, 2023
@jongwooo jongwooo deleted the hotfix/use-media-feature-range-notation branch April 3, 2023 15:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Something isn't working

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Expected "context" media feature range notation

1 participant