@jjdenhertog/ai-driven-development
Version:
AI-driven development workflow with learning capabilities for Claude
54 lines (47 loc) • 867 B
CSS
.wrapper {
display: flex;
flex-direction: column;
height: calc(100vh - 72px);
overflow: hidden;
}
/* Component-specific overrides */
.sidebarWidth {
/* Dynamic width set via inline styles */
}
.mainContent {
flex: 1;
overflow: hidden;
display: flex;
flex-direction: column;
}
.defaultContent {
flex: 1;
overflow-y: auto;
padding: 2rem;
}
/* Grid layout specific */
.gridSidebar {
width: 400px;
flex-shrink: 0;
display: flex;
flex-direction: column;
overflow: hidden;
background: transparent;
padding: 0;
}
.gridMain {
flex: 1;
overflow: hidden;
display: flex;
flex-direction: column;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
.defaultContent,
.mainContent {
padding: 1.5rem;
}
.gridSidebar {
max-height: 300px;
}
}