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

feat: container sizes #30

Closed
phucbm opened this issue Oct 19, 2023 · 0 comments
Closed

feat: container sizes #30

phucbm opened this issue Oct 19, 2023 · 0 comments
Assignees
Labels
good first issue Good for newcomers

Comments

@phucbm
Copy link
Member

phucbm commented Oct 19, 2023

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);}
@phucbm phucbm added the good first issue Good for newcomers label Oct 19, 2023
@phucbm phucbm linked a pull request Oct 20, 2023 that will close this issue
@phucbm phucbm closed this as completed Dec 25, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants