mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
85 lines
1.4 KiB
CSS
85 lines
1.4 KiB
CSS
.wizard-step__form {
|
|
display: grid;
|
|
gap: 12px;
|
|
}
|
|
|
|
.wizard-step__message {
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
.wizard-step__device-code {
|
|
display: grid;
|
|
justify-items: start;
|
|
gap: 8px;
|
|
padding: 14px;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-md);
|
|
background: var(--bg);
|
|
}
|
|
|
|
.wizard-step__device-code code {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
}
|
|
|
|
.wizard-step__options {
|
|
display: grid;
|
|
gap: 8px;
|
|
}
|
|
|
|
.wizard-step__option {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
padding: 10px;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-md);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.wizard-step__option small {
|
|
display: block;
|
|
margin-top: 2px;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.wizard-step__actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
|
|
.wizard-step__progress {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
min-height: 44px;
|
|
padding: 12px 14px;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-md);
|
|
background: var(--bg);
|
|
}
|
|
|
|
.wizard-step__spinner {
|
|
width: 18px;
|
|
height: 18px;
|
|
flex: 0 0 18px;
|
|
border: 2px solid color-mix(in srgb, var(--accent) 24%, transparent);
|
|
border-top-color: var(--accent);
|
|
border-radius: 50%;
|
|
animation: wizard-step-spin 800ms linear infinite;
|
|
}
|
|
|
|
@keyframes wizard-step-spin {
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.wizard-step__spinner {
|
|
animation: none;
|
|
border-color: var(--accent);
|
|
}
|
|
}
|