1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| .overlay {
| background-color: rgba(0, 0, 0, 0.7);
| position: fixed;
| top: 0;
| bottom: 0;
| left: 0;
| right: 0;
| transition-timing-function: ease;
| transition-duration: 300ms;
| transition-property: opacity;
|
| &-fade-leave {
| opacity: 0;
| transform: translate3d(-100%, 0, 0);
| }
| }
|
|