You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given you are using existing form element (like we do), this line produced some graphic glitches. Usually you work with content-box elements which means: Every button, input, checkbox, fieldset, ... has to be modified if you like to use reflex
Instead of
// Reset the box-sizing so our grid works properly
* {
@include box-sizing(border-box);
}
how about:
// Reset the box-sizing so our grid works properly
[class^="grid__"], [class*=" grid__"] {
@include box-sizing(border-box);
}
Could this work?
The text was updated successfully, but these errors were encountered:
Given you are using existing form element (like we do), this line produced some graphic glitches. Usually you work with
content-box
elements which means: Every button, input, checkbox, fieldset, ... has to be modified if you like to use reflexInstead of
how about:
Could this work?
The text was updated successfully, but these errors were encountered: