From e013c16ba946f851e2d0df91c0a53218c7c7e8fa Mon Sep 17 00:00:00 2001 From: Philipp Rudloff Date: Mon, 22 Sep 2014 08:18:14 +0200 Subject: [PATCH] Fix code example for media query mixin It was using an old variable name (`$palm`) instead of the current one (`$on-paln`). --- lib/site_template/css/main.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/site_template/css/main.scss b/lib/site_template/css/main.scss index f03d1c3d..5415d8bc 100755 --- a/lib/site_template/css/main.scss +++ b/lib/site_template/css/main.scss @@ -27,7 +27,7 @@ $on-laptop: 800px; // Using media queries with like this: -// @include media-query($palm) { +// @include media-query($on-palm) { // .wrapper { // padding-right: $spacing-unit / 2; // padding-left: $spacing-unit / 2;