Grid and stackable grids don't seems to have the same behavior on small screens: ```css @media only screen and (max-width: 767px) { .ui.grid { margin-left: -1rem !important; margin-right: -1rem !important; } .ui.stackable.grid { margin-left: 0rem !important; margin-right: 0rem !important; } } ``` To mix `.ui.grid` and `.ui.stackable.grid` on the same page I have to fix this in `grid.overrides`: ```css @media only screen and (max-width: 767px) { .ui.grid { margin-left: 0rem !important; margin-right: 0rem !important; } } ``` Have I missed something?