File tree Expand file tree Collapse file tree 3 files changed +43
-1
lines changed Expand file tree Collapse file tree 3 files changed +43
-1
lines changed Original file line number Diff line number Diff line change 1
- API_URL = http ://localhost:3030
1
+ API_URL = https ://forautobackend.herokuapp.com
2
2
ENV = development
Original file line number Diff line number Diff line change 1
1
@import ' vars.scss' ;
2
2
3
+
4
+ @keyframes zoomIn {
5
+ 0% {
6
+ transform : scale (0 );
7
+ }
8
+ 70% {
9
+ transform : scale (1.2 );
10
+ }
11
+ 100% {
12
+ transform : scale (1 );
13
+ }
14
+ }
15
+
16
+ @keyframes slideRight {
17
+ 0% {
18
+ transform : translateY (-100% );
19
+ }
20
+ 75% {
21
+ transform : translateY (20% );
22
+ }
23
+ 100% {
24
+ transform : translateY (0 );
25
+ }
26
+ }
27
+
3
28
.ribbons {
4
29
position : absolute ;
5
30
top : spacing (0.5 );
14
39
display : flex ;
15
40
position : relative ;
16
41
justify-content : center ;
42
+ animation-fill-mode : forwards ;
17
43
align-items : center ;
18
44
font-size : $font-size-s ;
19
45
border-radius : 50% ;
24
50
color : $color-white ;
25
51
text-transform : uppercase ;
26
52
background : var (--color-background );
53
+ @media (max-width : $tablet - 1 ) {
54
+ animation : zoomIn 0.6s ease-in ;
55
+ }
27
56
@media (min-width : $tablet ) {
57
+ animation : slideRight 0.3s ease-in ;
28
58
justify-content : flex-start ;
29
59
border-radius : unset ;
30
60
width : auto ;
Original file line number Diff line number Diff line change @@ -282,6 +282,18 @@ textarea {
282
282
}
283
283
}
284
284
285
+ @keyframes zoomIn {
286
+ 0% {
287
+ transform : scale (0 );
288
+ }
289
+ 70% {
290
+ transform : scale (1.2 );
291
+ }
292
+ 100% {
293
+ transform : scale (1 );
294
+ }
295
+ }
296
+
285
297
.guy_svg__paperplane-icon {
286
298
animation : moveAll 6s ease infinite alternate ;
287
299
}
You can’t perform that action at this time.
0 commit comments