sebnitu / vrembem

A CSS component library based on the BEM methodology.

Home Page:https://vrembem.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add breakpoint modifiers to button-group component

sebnitu opened this issue · comments

There's a need to add both _full and _stack modifier styles based on a specific breakpoint.

Example implementation:

@each $key, $value in core.$breakpoints {
  @include core.media-max($value) {
    .button-group_full_#{$key} {
      ...
    }
  }
}