mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-20 16:42:56 +00:00
fix: some android devices don't support implied css animation units
This commit is contained in:
@@ -53,7 +53,7 @@ const responsiveConfig: ScheduleResponsiveBreakpoint[] = [
|
||||
|
||||
const fabAnimations = trigger('fabAnimation', [
|
||||
transition(':leave', [
|
||||
style({opacity: 1, transform: 'translate(0, 0) scale(1)'}),
|
||||
style({opacity: 1, transform: 'translate(0vw, 0vh) scale(100%)'}),
|
||||
animate(
|
||||
'100ms ease-in',
|
||||
style({opacity: 0, transform: 'translate(-5vw, -5vh) scale(200%)'}),
|
||||
@@ -63,7 +63,7 @@ const fabAnimations = trigger('fabAnimation', [
|
||||
style({opacity: 0, transform: 'translate(-5vw, -5vh) scale(200%)'}),
|
||||
animate(
|
||||
'200ms ease-out',
|
||||
style({opacity: 1, transform: 'translate(0, 0) scale(1)'}),
|
||||
style({opacity: 1, transform: 'translate(0vw, 0vh) scale(100%)'}),
|
||||
),
|
||||
]),
|
||||
]);
|
||||
@@ -204,7 +204,7 @@ export class SchedulePageComponent implements OnInit, AfterViewInit {
|
||||
},
|
||||
{
|
||||
opacity: '1',
|
||||
transform: 'translate(0, 0) scale(1)',
|
||||
transform: 'translate(0vw, 0vh) scale(1)',
|
||||
},
|
||||
]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user