Ajout de la partie IA

This commit is contained in:
2026-04-20 14:52:20 +02:00
parent 94bbf8beff
commit 5b133aa2fe
50 changed files with 3236 additions and 11 deletions

View File

@@ -119,4 +119,35 @@
&:disabled { opacity: 0.5; cursor: not-allowed; }
&:hover:not(:disabled) { background: #1f2937; }
&.active {
background: #1f2937;
border-color: #6c63ff;
color: white;
}
}
.ai-error-banner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
background: #3f1f1f;
color: #fca5a5;
border: 1px solid #7f1d1d;
border-radius: 6px;
padding: 0.7rem 1rem;
margin-bottom: 1.25rem;
font-size: 0.88rem;
.ai-error-dismiss {
background: transparent;
border: none;
color: #fca5a5;
font-size: 1.2rem;
line-height: 1;
cursor: pointer;
padding: 0 0.25rem;
&:hover { color: white; }
}
}