- Move app-root, app-main, app-header base layout to application.css - Move selected-theme classes to CreationActions.css where they're used - Update AppHeader to use utility classes from application.css - Clean up App.css to only contain essential imports - Add responsive design utilities to application.css - Reduce CSS duplication across components 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
99 lines
1.8 KiB
CSS
99 lines
1.8 KiB
CSS
/* Creation Actions Layout */
|
|
.creation-actions {
|
|
background: var(--bg-secondary);
|
|
border-radius: 0.75rem;
|
|
padding: 2rem;
|
|
border: 1px solid var(--border-primary);
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.selected-theme-info {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
/* Selected Theme Display */
|
|
.selected-theme-section {
|
|
margin-top: 2rem;
|
|
padding: 1.5rem;
|
|
border: 1px solid var(--border-secondary);
|
|
border-radius: 0.5rem;
|
|
background: var(--bg-muted);
|
|
}
|
|
|
|
.selected-theme-title {
|
|
margin: 0 0 1rem 0;
|
|
color: var(--text-primary);
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.selected-theme-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.selected-theme-item {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.selected-theme-item strong {
|
|
color: var(--text-primary);
|
|
font-weight: 600;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.selected-theme-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 0.75rem;
|
|
}
|
|
}
|
|
|
|
.theme-preview-info h3 {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: var(--text-primary);
|
|
margin: 0 0 0.5rem 0;
|
|
}
|
|
|
|
.theme-preview-info p {
|
|
color: var(--text-secondary);
|
|
margin: 0 0 0.75rem 0;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.theme-stats {
|
|
display: flex;
|
|
gap: 1rem;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.theme-stats span {
|
|
background: var(--bg-muted);
|
|
padding: 0.25rem 0.75rem;
|
|
border-radius: 0.25rem;
|
|
color: var(--text-tertiary);
|
|
}
|
|
|
|
/* Action Buttons - Clear visual hierarchy */
|
|
.action-buttons {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
padding-top: 1.5rem;
|
|
border-top: 1px solid var(--border-primary);
|
|
}
|
|
|
|
/* Make primary action stand out */
|
|
.action-buttons .button.primary {
|
|
min-width: 180px;
|
|
}
|
|
|
|
/* Ghost button has no min-width for minimal appearance */
|
|
.action-buttons .button.ghost {
|
|
min-width: auto;
|
|
padding: 0.5rem 0.75rem;
|
|
} |