Skip to content

Releases: sass-mq/sass-mq

v1.3.0

05 Nov 10:46
Compare
Choose a tag to compare
  • [Fix] Styling void between two media queries on user-set baselines higher than 16px - fixes #6
  • [New] Tests are not imported when Sass MQ is installed via the Bower package manager

Thanks to @ryuran and @tzi.

v1.2.0: Static breakpoint limit

01 Nov 18:18
Compare
Choose a tag to compare
  • [New] Define the breakpoint from the $mq-breakpoints list that should be used as the target width when outputting a static stylesheet (i.e. when $mq-responsive is set to 'false').

Kudos to @bewildergeist who proposed this feature in pull requests #2 and #4.

v1.1.1

13 Aug 14:03
Compare
Choose a tag to compare
  • [New] Prefix px2em and retrieve-breakpoint-width functions with mq- to avoid potential conflicts with external modules
  • [Fixed] Indentation in mq-add-breakpoint function

v1.1.0: Custom breakpoints

06 Aug 15:01
Compare
Choose a tag to compare
  • [Removed] Guardian-specific tweakpoints
  • [New] Add custom breakpoints:
$mq-breakpoints: mq-add-breakpoint(tvscreen, 1920px);

.hide-on-tv {
    @include mq(tvscreen) {
        display: none;
    }
}

Initial release

27 Jul 21:46
Compare
Choose a tag to compare
  • Breakpoints list
  • Responsive mode
  • Tests