From fef190a7504ceb6b3cbbaf32c6f7db3ef2e0c4a8 Mon Sep 17 00:00:00 2001 From: "Dan O. Williams" <11464021+thisisdano@users.noreply.github.com> Date: Wed, 3 Apr 2019 21:10:42 -0700 Subject: [PATCH] Add `offset-none` to the responsive offset loop --- src/stylesheets/core/_layout-grid.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/stylesheets/core/_layout-grid.scss b/src/stylesheets/core/_layout-grid.scss index a8fd0e7087..22f7906a72 100644 --- a/src/stylesheets/core/_layout-grid.scss +++ b/src/stylesheets/core/_layout-grid.scss @@ -146,6 +146,12 @@ $namespace-grid: ns('grid'); } } } + @include at-media($mq-key) { + .#{$mq-key}\:#{$namespace-grid}offset-none { + $props: append-important($grid-global, none); + @include grid-offset($props); + } + } } } /* stylelint-enable */