source: trip-planner-front/node_modules/bootstrap/scss/_transitions.scss@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 425 bytes
Line 
1.fade {
2 @include transition($transition-fade);
3
4 &:not(.show) {
5 opacity: 0;
6 }
7}
8
9// scss-docs-start collapse-classes
10.collapse {
11 &:not(.show) {
12 display: none;
13 }
14}
15
16.collapsing {
17 height: 0;
18 overflow: hidden;
19 @include transition($transition-collapse);
20
21 &.collapse-horizontal {
22 width: 0;
23 height: auto;
24 @include transition($transition-collapse-width);
25 }
26}
27// scss-docs-end collapse-classes
Note: See TracBrowser for help on using the repository browser.