-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
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
www.graficasolution.com - "Nos projets" section layout is broken #95687
Comments
The design changes when the window is above or under And indeed in @media (min-width:992px) {
// set of rules defined in percentages.
// specifically
} but more specifically this rule: .container-fluid .boldgrid-section, .container-fluid .boldgrid-section-group, .container-fluid .row, .container .row {
margin-right: -15px;
margin-left: -15px;
} which comes from a bootstrap issue relying on a Blink and WebKit bug. It can be solved by adding to the CSS. @media (min-width:992px) {
.container {
width:970px
}
.container .row.multi-columns-row {
width: fit-content;
}
} |
I've landed a patch that fixes this issue in https://bugzilla.mozilla.org/show_bug.cgi?id=1745310 . I've confirmed that this webcompat issue is still reproducible in Firefox 100, and is fixed in latest Firefox Nightly 102. |
URL: https://www.graficasolution.com/
Browser / Version: Firefox 94.0
Operating System: Windows 10
Tested Another Browser: Yes Chrome
Problem type: Design is broken
Description: Items are misaligned
Steps to Reproduce:
The project section is misaligned and images are not showing
View the screenshot
Browser Configuration
From webcompat.com with ❤️
The text was updated successfully, but these errors were encountered: