From a296a24728a976459d890366e19b20c56efa6428 Mon Sep 17 00:00:00 2001
From: kaftarmery
- {claimed ? ( - <> - You claimed this application but haven't set keys in your environment. Get them from the Clerk - Dashboard. - > - ) : ( - <> - We generated temporary API keys for you. Link this instance to your Clerk account to configure it.{' '} - ({ - color: t.colors.$whiteAlpha600, - textDecoration: 'underline solid', - transition: `${t.transitionTiming.$common} ${t.transitionDuration.$fast}`, - ':hover': { - color: t.colors.$whiteAlpha800, - }, - })} - > - Learn more - - > - )} -
-+ {claimed ? ( + <> + You claimed this application but haven't set keys in your environment. Get them from the Clerk + Dashboard. + > + ) : ( + <> + We generated temporary API keys for you. Link this instance to your Clerk account to configure it.{' '} + ({ + color: t.colors.$whiteAlpha600, + textDecoration: 'underline solid', + transition: `${t.transitionTiming.$common} ${t.transitionDuration.$fast}`, + ':hover': { + color: t.colors.$whiteAlpha800, + }, + })} + > + Learn more + + > + )} +
+ - {isForcedExpanded && ( - - {claimed ? 'Get API keys' : 'Claim keys'} - - )} + } + `} + > + {claimed ? 'Get API keys' : 'Claim keys'} + {
rel='noopener noreferrer'
data-expanded={isForcedExpanded}
css={css`
+ ${baseElementStyles};
display: flex;
align-items: center;
justify-content: center;
@@ -382,13 +411,13 @@ const _KeylessPrompt = (_props: KeylessPromptProps) => {
0px 1.5px 2px 0px rgba(0, 0, 0, 0.48),
0px 0px 4px 0px rgba(243, 107, 22, 0) inset;
- animation: ${isForcedExpanded && 'show-button 520ms ease-in forwards'};
+ animation: ${isForcedExpanded && 'show-button 590ms ease-in forwards'};
@keyframes show-button {
0%,
- 14% {
+ 8% {
opacity: 0;
}
- 24%,
+ 21%,
100% {
opacity: 1;
}
From 756bf45c1b90f0ef8cf8e673e178f5a5dcee8119 Mon Sep 17 00:00:00 2001
From: panteliselef