3

I want to extend certain bootstrap classes with media breakpoints (similar like bootstrap does it with col-6, col-md-6).

So I tried this:

@media (max-width: 800px) {
  table.table-md-sm {
    @extend .table-sm;
  }
}

However that gives me the SASS compiler error «You may not @extend selectors across media queries».

So how can I do this with pure SASS?

basZero
  • 4,129
  • 9
  • 51
  • 89
  • Does this answer your question? [Extending selectors from within media queries with Sass](https://stackoverflow.com/questions/14840918/extending-selectors-from-within-media-queries-with-sass) – Roy Sep 09 '20 at 12:47
  • I don't think so, because I want to extend with an existing bootstrap class `table-sm`, not my own class – basZero Sep 10 '20 at 05:57

0 Answers0