diff --git a/docs/changelog.md b/docs/changelog.md index ce86c5d..fee4669 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,11 @@ ## [1.2.15] - 2025-09-04 +### Corrigé +- **Position des notifications** : Les bandeaux de notification ne cachent plus les boutons + - Décalage vertical de 20px à 70px pour apparaître sous la barre d'outils + - Les boutons restent accessibles pendant l'affichage des notifications + ### Modifié - **Bouton de déconnexion remplacé par "Quitter"** : Changement du comportement de fermeture - Le bouton "Déconnecter" devient "Quitter" pour plus de clarté diff --git a/renderer.js b/renderer.js index 817955f..3f729fe 100644 --- a/renderer.js +++ b/renderer.js @@ -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'};