@jjdenhertog/ai-driven-development
Version:
AI-driven development workflow with learning capabilities for Claude
70 lines (61 loc) • 1.23 kB
CSS
.overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--overlay-bg);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.dialog {
background: var(--gradient-subtle);
border: 1px solid var(--modal-border);
border-radius: 8px;
padding: 24px;
max-width: 400px;
width: 90%;
box-shadow: var(--modal-shadow);
}
.title {
font-size: 18px;
font-weight: 600;
margin-bottom: 12px;
color: var(--text-primary);
}
.message {
font-size: 14px;
line-height: 1.5;
color: var(--text-secondary);
margin-bottom: 24px;
}
.actions {
display: flex;
gap: 12px;
justify-content: flex-end;
}
.button {
padding: 8px 16px;
border-radius: 4px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
border: none;
transition: background-color 0.2s;
}
.cancelButton {
background: var(--button-secondary);
color: var(--text-primary);
}
.cancelButton:hover {
background: var(--button-secondary-hover);
}
.confirmButton {
background: var(--button-danger);
color: white;
}
.confirmButton:hover {
background: var(--button-danger-hover);
}