From e89abce1b01dda89efdf230101d1aa3c877b3b6c Mon Sep 17 00:00:00 2001 From: Yury German Date: Wed, 22 May 2019 00:42:33 -0400 Subject: Updating of Plugins and Themes List of Plugins updates -- akismet.4.1.2 google-authenticator.0.52 jetpack.7.3.1 List of Themes Updates -- mantra.3.2.0 twentyfifteen.2.5 twentyfourteen.2.7 Signed-off-by: Yury German --- .../scss/_utilities/mixins/_breakpoint.scss | 46 ---------------------- 1 file changed, 46 deletions(-) delete mode 100644 plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss (limited to 'plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss') diff --git a/plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss b/plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss deleted file mode 100644 index 80cf50f5..00000000 --- a/plugins/jetpack/scss/_utilities/mixins/_breakpoint.scss +++ /dev/null @@ -1,46 +0,0 @@ -// ========================================================================== -// Breakpoint Mixin -// -// Uses Sass Maps which requires Sass v3.3.0 or newer -// -// -// EXAMPLE -// -// body { -// @include breakpoint(tablet){ -// font-size: 14px; -// }; -// } - -// ========================================================================== - -// Add or remove breakpoints as you desire -$breakpoints:( - phone: 320px, - large-phone: 530px, - phablet: 600px, - tablet: 782px, - desktop: 900px, - large-desktop: 1147px, -); - -@mixin breakpoint($size){ - @each $breakpoint, $value in $breakpoints { - @if $size == $breakpoint { - @media (max-width: map-get($breakpoints, $breakpoint)){ - @content; - } - } - } -} - -// For mobile first -@mixin minbreakpoint($size){ - @each $breakpoint, $value in $breakpoints { - @if $size == $breakpoint { - @media (min-width: map-get($breakpoints, $breakpoint)){ - @content; - } - } - } -} -- cgit v1.2.3-65-gdbad