We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
modern_portfolio/scss/_config.scss
Line 49 in 35ee878
You have:
@mixin mediaMd { @media screen and (max-width: 768px) {
Which creates a branching overlap (a 500px width device reports as Sm and Md)
Sm
Md
Did you want:
@mixin mediaMd { @media screen and (min-width: 501px) and (max-width: 768px) {
?
IIUC this would also entail changing:
modern_portfolio/scss/_mobile.scss
Line 16 in 35ee878
The text was updated successfully, but these errors were encountered:
No branches or pull requests
modern_portfolio/scss/_config.scss
Line 49 in 35ee878
You have:
Which creates a branching overlap (a 500px width device reports as
Sm
andMd
)Did you want:
?
IIUC this would also entail changing:
modern_portfolio/scss/_mobile.scss
Line 16 in 35ee878
Sm
andMd
screens trigger that code-block.The text was updated successfully, but these errors were encountered: