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

styling: add 3 column template class #373

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -465,14 +465,18 @@ code {
// used on a container with two children <div>
// provides auto adjustment to the content of the left column
// and auto fills the width on the right
// [ COL1 (auto fill remaining space) ] [ COL2 (max-content width) ]
// [ COL0 (max-content width) ] [ COL1 (auto fill remaining space) ] [ COL2 (max-content width) ]
display: grid;
grid-auto-flow: column;
grid-template-columns: auto max-content;
grid-auto-columns: max-content;
align-items: center;
column-gap: 1rem;

&.triple {
grid-template-columns: max-content auto max-content;
}

&.no-wrap {
@media all and (max-width: @largestTabletScreen) {
grid-auto-flow: column;
Expand Down
Loading