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
With last chrome update you can see bad displaying of parallax sections. So here is some quick fix: Better way: Edit /_sass/partials/_helper.scss
/_sass/partials/_helper.scss
.image-section { color: #fff; font-weight: $light; background-repeat: no-repeat; background-position: center center !important; background-size: cover !important; &.parallax { // background-attachment: fixed; box-shadow: inset 0 0 12px 3px rgba(0, 0, 0, .75); } &.standart-height { min-height: 500px; } }
Delete or comment background-attachment: fixed; in &.parallax { .. }
background-attachment: fixed;
&.parallax { .. }
Simple way: Remove parallax class on sections where they are. Note: with this solutions you will remove box-shadow on that sections.
parallax
The text was updated successfully, but these errors were encountered:
Merge pull request gdg-x#48 from alisaduncan/ad/fix-typo
d8a9987
fix small typo
No branches or pull requests
With last chrome update you can see bad displaying of parallax sections.
So here is some quick fix:
Better way:
Edit
/_sass/partials/_helper.scss
Delete or comment
background-attachment: fixed;
in&.parallax { .. }
Simple way:
Remove
parallax
class on sections where they are.Note: with this solutions you will remove box-shadow on that sections.
The text was updated successfully, but these errors were encountered: