auth: smooth transition

This commit is contained in:
@wwwjim 2020-09-02 01:53:12 -07:00
parent a4704c7d0b
commit c8591afaad

View File

@ -48,6 +48,20 @@ const STYLES_POPOVER = css`
width: 100%;
background: ${Constants.system.white};
color: ${Constants.system.black};
@keyframes authentication-popover-fade-in {
from {
transform: translateY(-8px);
opacity: 0;
}
to {
transform: translateY(0px);
opacity: 1;
}
}
animation: authentication-popover-fade-in 400ms ease;
`;
const STYLES_LINKS = css`