Move RightPanel animation to compositor

This commit is contained in:
Germain Souquet 2021-07-02 15:23:03 +01:00
parent aac0989005
commit a093ea6357
2 changed files with 35 additions and 5 deletions

View file

@ -110,7 +110,6 @@ $dot-size: 12px;
width: $dot-size;
transform: scale(1);
background: rgba($pulse-color, 1);
box-shadow: 0 0 0 0 rgba($pulse-color, 1);
animation: mx_Beta_bluePulse 2s infinite;
animation-iteration-count: 20;
position: relative;
@ -118,7 +117,10 @@ $dot-size: 12px;
&::after {
content: "";
position: absolute;
inset: 0;
width: inherit;
height: inherit;
top: 0;
left: 0;
transform: scale(1);
transform-origin: center center;
animation-name: mx_Beta_bluePulse_shadow;