Bulma responsive mixin pass own value

bulma responsive mixin pass own value

In this case i chose to create a variable to pass into Bulma’s until mixin but i could have just as easily just passed in 365px or such directly.

@include until($mini) {
  .sitename.column,
  .logo.column {
    width: 100%;
  }
}

For the record, this simply produces:

@media screen and (max-width: 362px) {
  .sitename.column,
  .logo.column {
    width: 100%; } }

TODO: maybe circle back to https://github.com/jgthms/bulma/issues/1818 and help contribute docs.

Oh and this allowed me to achieve, with the multiline columns option, essentially sub-mobile column sizes.

bulma add a sub-mobile columns



drupal 8 paragraphs disappear on save