@jjdenhertog/ai-driven-development
Version:
AI-driven development workflow with learning capabilities for Claude
48 lines (43 loc) • 822 B
CSS
/* Only keeping styles that are actually used in SettingsSection.tsx */
.fileList {
flex: 1;
overflow-y: auto;
padding: 1rem;
background: var(--bg-primary);
margin: 0 1rem 1rem 1rem;
border-radius: 0.5rem;
}
.headerInfo {
display: flex;
align-items: center;
gap: 1rem;
}
.headerInfo h2 {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-primary);
margin: 0;
}
.unsaved {
font-size: 0.875rem;
color: var(--warning-color);
}
.editor {
flex: 1;
padding: 2rem;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.placeholder {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-tertiary);
font-size: 1rem;
background: var(--bg-primary);
margin: 0 1rem 1rem 1rem;
border-radius: 0.5rem;
}