Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_transition.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f853821344c96488b541496dbca01b3a4b763379 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@mixin transition($transition...) {
  @if $enable-transitions {
    @if length($transition) == 0 {
      transition: $transition-base;
    } @else {
      transition: $transition;
    }
  }

  @media screen and (prefers-reduced-motion: reduce) {
    transition: none;
  }
}