Abmacode12's picture
<!doctype html>
439ea03 verified
raw
history blame contribute delete
576 Bytes
/* Optionnel: styles supplémentaires (la plupart sont gérés par Tailwind) */
/* Scrollbar douce (WebKit) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #1f2937; border-radius: 9999px; }
::-webkit-scrollbar-track { background: transparent; }
/* Chips réutilisables */
.chip {
@apply px-3 py-2 rounded-full bg-slate-800/70 border border-slate-700 text-slate-100 hover:bg-slate-800 cursor-pointer;
}
/* Transitions pour certains éléments si besoin */
button, .chip { transition: background .15s ease, opacity .15s ease; }