Skip to content
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

To radical selector in grid #42

Closed
byteSamurai opened this issue Mar 28, 2017 · 1 comment
Closed

To radical selector in grid #42

byteSamurai opened this issue Mar 28, 2017 · 1 comment

Comments

@byteSamurai
Copy link

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?

@leejordan
Copy link
Owner

This is a fair point and I have incorporated a solution into version 2 which will be released very soon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants