We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have the following main.scss:
main.scss
$gel-grid-enable--markup-output: true; $gel-grid-enable--box-sizing: true; @import '~gel-sass-tools/sass-tools'; @import '~sass-mq/mq'; @import '~gel-grid/grid';
But the grid does not render correctly like this.
I have to add the universal box-sizing in order for the sizing to work correctly:
html { box-sizing: border-box; } *, *:before, *:after { box-sizing: inherit; }
Is there something else I am missing in order to get this to work without adding additional styles?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the following
main.scss
:But the grid does not render correctly like this.
I have to add the universal box-sizing in order for the sizing to work correctly:
Is there something else I am missing in order to get this to work without adding additional styles?
The text was updated successfully, but these errors were encountered: