Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit c1837fd

Browse files
committedAug 3, 2017
Include documentation on disabling animations (mmistakes#1150)
1 parent af93fb4 commit c1837fd

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed
 

‎docs/_docs/16-stylesheets.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To override the default [Sass](http://sass-lang.com/guide) (located in theme's
4545

4646
1. Copy directly from the Minimal Mistakes theme gem
4747

48-
- Go to your local Minimal Mistakes gem installation directory (run
48+
- Go to your local Basically Basic gem installation directory (run
4949
`bundle show minimal-mistakes-jekyll` to get the path to it).
5050
- Copy the contents of `/assets/css/main.scss` from there to
5151
`<your_project>`.
@@ -161,3 +161,12 @@ And `$susy` is used for setting [the grid](http://susy.oddbird.net/) the theme u
161161
<img src="{{ '/assets/images/mm-susy-grid-overlay.jpg' | absolute_url }}" alt="Susy grid overlay for debugging">
162162
<figcaption>Susy grid debug overlay enabled.</figcaption>
163163
</figure>
164+
165+
### Disabling Animations
166+
167+
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:
168+
169+
```scss
170+
$intro-transition : none;
171+
$global-transition : none;
172+
```

0 commit comments

Comments
 (0)
This repository has been archived.