fix: lgc-clear in tablet mode doesn’t finish line for next content
-
In tablet size (width<=1024) lgc-clear has “display: none;” which I think means that there’s no “line break” after the last entry in a non-full column. I think the fix is in file css/unsemantic-grid-responsive-tablet.css around line 1513 – change “display: none;” to “display: block important;” e.g.
@media (max-width: 1024px) { .lgc-clear { /* display: none; */ display: block important; } }
Hope that helps!
- The topic ‘fix: lgc-clear in tablet mode doesn’t finish line for next content’ is closed to new replies.