Updating theme - version 4.0.0 - fonts, conditional comments, prev & next posts,...
[ghost-theme-willow.git] / source / sass / tools / _mixins.scss
index 7db16e6c8b9009b96b52bc429992a5c2b041b57e..f22b9e88e89dc8c8a47a89f6f81528e58289e694 100644 (file)
@@ -6,13 +6,13 @@
 // Shortcuts to breakpoints
 @mixin breakpoint($breakpoint) {
   @if $breakpoint == "mobile" {
-    @media (max-width: 640px) {
+    @media (max-width: 1024px) {
       @content;
     }
   }
 
   @else if $breakpoint == "desktop" {
-    @media (min-width: 641px) {
+    @media (min-width: 1025px) {
       @content;
     }
   }