File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -442,21 +442,29 @@ $bv-angle-padding-md: calc(#{$bv-angle-padding} * 2);
442
442
443
443
.bv-logo {
444
444
filter : drop-shadow (-3px 12px 2px #e7e7e7 );
445
+ animation : logo- splash 0.35s 1 ease-in-out ;
446
+ width : 100% ; // IE11 Fix
447
+ max-width : 75% ;
448
+ margin-left : auto ;
449
+ margin-right : auto ;
450
+ transform-style : preserve-3d ;
445
451
}
446
452
447
- #logo {
448
- animation : logo- flip 1s ;
449
- transform-style : preserve-3d ;
453
+ @media (prefers-reduced-motion : reduce) {
454
+ .bv-logo {
455
+ transition : none ;
456
+ animation : none ;
457
+ }
450
458
}
451
459
452
- @keyframes logo-flip {
460
+ @keyframes logo-splash {
453
461
0% {
454
- opacity : 0.5 ;
455
- transform : rotateY ( 180 deg );
462
+ opacity : 0.1 ;
463
+ transform : scale ( 0.75 );
456
464
}
457
465
100% {
458
466
opacity : 1 ;
459
- transform : rotateY ( 0 deg );
467
+ transform : scale ( 1 );
460
468
}
461
469
}
462
470
</style >
You can’t perform that action at this time.
0 commit comments