ademilter/bricklayer

adjusting width of single box

greenlevel opened this issue · 1 comments

I just discovered bricklayer and i am happy who it works.

I was just wondering is it possible to make certain boxes wider? e.g. standard box and also column is for example 25%
but i want certain boxes be like 50% while the rest goes around it.
So not that the whole column is 50% width.

Thanks in advance

f commented

Hello.

Bricklayer uses CSS to adjusting widths and calculates the size as following:

@media screen and (min-width: 1200px) {
  .bricklayer-column-sizer {
    /* divide by 3. */
    width: 33.3%;
  }
}

@media screen and (min-width: 768px) {
  .bricklayer-column-sizer {
    /* divide by 2. */
    width: 50%;
  }
}

But if you want more dynamic/custom computed layout as you wish, it is not possible.

Thanks