fix: Repositionnement des notifications pour ne plus cacher les boutons

- Décalage des notifications de top:20px à top:70px
- Les notifications apparaissent maintenant sous la barre d'outils
- Les boutons restent accessibles pendant l'affichage des notifications
- Mise à jour du changelog
This commit is contained in:
Pierre Marx
2025-09-04 17:07:59 -04:00
parent 931724b0bc
commit 71b3e874c1
2 changed files with 6 additions and 1 deletions

View File

@@ -645,7 +645,7 @@ function showNotification(message, type = 'info') {
// Styles de base pour la notification
notification.style.cssText = `
position: fixed;
top: 20px;
top: 70px;
right: 20px;
padding: 15px 20px;
background: ${type === 'success' ? '#4caf50' : type === 'error' ? '#f44336' : '#2196f3'};