style(responsive): finish responsive token migration

This commit is contained in:
2026-07-03 11:19:27 +08:00
parent 489554cd78
commit e5bfb4e373
27 changed files with 132 additions and 98 deletions
@@ -10,20 +10,20 @@
.bubble {
display: flex;
align-items: center;
gap: 4px;
gap: var(--responsive-inline-gap-xs, 4px);
padding: var(--spacing-3, 12px) var(--spacing-4, 16px);
background: #fff;
border-radius: var(--radius-xxl, 24px);
border-top-left-radius: 0;
min-width: 60px;
min-height: 40px;
min-width: var(--bubble-min-width, 60px);
min-height: clamp(38px, 7.407vw, 40px);
box-shadow: var(--shadow-input-box, 0 1px 2px rgba(0, 0, 0, 0.1));
}
.dot {
display: inline-block;
width: 8px;
height: 8px;
width: var(--responsive-dot-size, 8px);
height: var(--responsive-dot-size, 8px);
border-radius: 50%;
background: var(--color-text-foreground, #000);
animation: bounce 1.4s infinite ease-in-out both;