Missing breakpoints after update from 8.12.0 to 8.13.0
See original GitHub issueWhen using v8.12.0, all the breakpoints like bp--xs--major
work fine, and I can view our source CSS with the translated px
values.
After updating to v8.13.0, the breakpoints are missing. The source then looks like:
.bx--breadcrumb {
font-size: 0.875rem;
font-family: "ibm-plex-sans", Helvetica Neue, Arial, sans-serif;
display: inline;
}
@media (min-width: bp--xs--major) { <-- missing breakpoint
.bx--breadcrumb {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
The diff for the release shows a different yarn.lock
- maybe that’s related 🤔
Issue Analytics
- State:
- Created 5 years ago
- Comments:7 (7 by maintainers)
Top Results From Across the Web
Xpress Release Notes - FICO
A new control CHECKINPUTDATA makes Xpress check input data for invalid values when supplied through the API. This checks for example for NANs...
Read more >Troubleshoot Breakpoints in the Visual Studio Debugger
Normally, this problem happens when a source file is changed, but the source code wasn't rebuilt. To fix this issue, rebuild the project....
Read more >Null Pointer Exception thrown due to JIRA not handling ...
There no specific steps to reproduce this problem. The only way to reproduce it would be in a controlled environment and setting breakpoints...
Read more >Recent changes — Coq 8.16.1 documentation
Coq version 8.15 integrates many bug fixes, deprecations and cleanups as well as a few new features. We highlight some of the most...
Read more >Debugger Won't hit breakpoints in jest test #60187 - GitHub
tl;dr: a workaround is that breakpoints set after launching work. I can repro this, I tried downgrading jest in the test repo, but...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@alisonjoseph For our React project, we have:
A vendor sass file
/vendor/index.scss
that imports the carbon styles:@import '../../../../node_modules/carbon-components/scss/globals/scss/styles';
Then the very top of our main
app.scss
importsvendor
:@import './vendor';
and then we have a gulp task that bundles all our styles, and we add the bundle in a
layout.jsx
that’s rendered in our mainindex.html
.Closing this due to inactivity, feel free to re-open if necessary.