From b756c235da081227ea9c73202d36bae39e74ce5c Mon Sep 17 00:00:00 2001 From: Peter Dimou Date: Thu, 3 Aug 2017 11:58:11 -0400 Subject: [PATCH] Include documentation on disabling animations --- docs/_docs/16-stylesheets.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/_docs/16-stylesheets.md b/docs/_docs/16-stylesheets.md index 7cab59a6d725..ada414a4ab35 100644 --- a/docs/_docs/16-stylesheets.md +++ b/docs/_docs/16-stylesheets.md @@ -45,7 +45,7 @@ To override the default [Sass](http://sass-lang.com/guide) (located in theme's 1. Copy directly from the Minimal Mistakes theme gem - - Go to your local Minimal Mistakes gem installation directory (run + - Go to your local Basically Basic gem installation directory (run `bundle show minimal-mistakes-jekyll` to get the path to it). - Copy the contents of `/assets/css/main.scss` from there to ``. @@ -161,3 +161,12 @@ And `$susy` is used for setting [the grid](http://susy.oddbird.net/) the theme u Susy grid overlay for debugging
Susy grid debug overlay enabled.
+ +### Disabling Animations + +You can disable either the fade-in intro animation, element tranisition animations, or both by overriding the corresponding variables. For example if you wanted to disable all animations you could include the following lines: + +```scss +$intro-transition : none; +$global-transition : none; +```