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
Create options to add multiple container sizes, and provide related CSS variables and classes.
Usage demo:
/* variables */ :root { /* Container */ --bb-container:1076px; --bb-container-large:1196px; --bb-container-xl:1290px; } /* Container */ .container, .container-large, .container-xl { position:relative; width:100%; max-width:calc(var(--bb-container) + var(--bb-gap-container) * 2); margin-right:auto; margin-left:auto; padding-right:var(--bb-gap-container); padding-left:var(--bb-gap-container); } .container {max-width:calc(var(--bb-container) + var(--bb-gap-container) * 2);} .container-large {max-width:calc(var(--bb-container-large) + var(--bb-gap-container) * 2);} .container-xl {max-width:calc(var(--bb-container-xl) + var(--bb-gap-container) * 2);}
The text was updated successfully, but these errors were encountered:
vandangnhathung
Successfully merging a pull request may close this issue.
Create options to add multiple container sizes, and provide related CSS variables and classes.
Usage demo:
The text was updated successfully, but these errors were encountered: