Create a new loading column size

Atm I use col-lg, col-md, col-sm and col-xs

it happens that col-xs is set to a width of 768px, I think.

How can I create a new col-xxs or something less, for example. width of 480 pixels?

+4
source share
3 answers

You can use the following for this. I personally contact the boot CDN in my projects and keep the local bootstrap version, so I can use my mixes for my styles related to the site, where I would put the following ...

@media (max-width: $screen-xs-min) {
  @include make-grid(xxs);
}
+2
source

, @4dgaurav , Bootstrap LESS. .

LESS, , (!): https://github.com/brgrz/bootstrap-breakpoints

0
source

Source: https://habr.com/ru/post/1537849/


All Articles