This commit is contained in:
Archer
2023-12-18 16:24:50 +08:00
committed by GitHub
parent d33c99f564
commit 703583fff7
130 changed files with 3418 additions and 2579 deletions

View File

@@ -1,20 +1,23 @@
.waitingAnimation::after {
.waitingAnimation > :last-child::after {
display: inline-block;
content: '';
width: 4px;
width: 3px;
height: 14px;
transform: translate(4px, 2px) scaleY(1.3);
background-color: var(--chakra-colors-chakra-body-text);
background-color: var(--chakra-colors-blue-700);
animation: blink 0.6s infinite;
}
.animation {
> :last-child::after {
height: 20px;
&::after {
display: inline-block;
content: '';
width: 4px;
width: 3px;
height: 14px;
transform: translate(4px, 2px) scaleY(1.3);
background-color: var(--chakra-colors-chakra-body-text);
background-color: var(--chakra-colors-blue-700);
animation: blink 0.6s infinite;
}
}