refactor: relocate components to app directory structure

This commit is contained in:
2026-06-09 14:43:10 +08:00
parent f060301c24
commit cda55c8f9b
61 changed files with 19 additions and 27 deletions
@@ -0,0 +1,54 @@
.button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--spacing-sm);
width: 100%;
height: var(--button-height);
padding: 0 var(--spacing-lg);
border: none;
border-radius: var(--radius-full);
font-size: var(--font-size-md);
font-weight: 600;
color: var(--color-text-primary);
cursor: pointer;
transition: opacity 0.15s ease, transform 0.05s ease;
}
.button:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.button:not(:disabled):active {
transform: scale(0.98);
}
.accent {
background: linear-gradient(
90deg,
var(--color-accent),
var(--color-facebook-button-gradient-end)
);
}
.primary {
background: var(--color-primary);
}
.spinner {
display: inline-block;
width: 16px;
height: 16px;
border-width: 2px;
border-style: solid;
border-color: currentColor transparent transparent transparent;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}