Actualiser css/admin.css
This commit is contained in:
+13
-6
@@ -122,16 +122,23 @@ input[type="checkbox"]:checked::after { content: '✓'; color: var(--background)
|
|||||||
background: var(--surface-card);
|
background: var(--surface-card);
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
width: 100%;
|
width: 90%;
|
||||||
max-width: 450px;
|
max-width: 600px; /* Augmenté de 450px à 600px */
|
||||||
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
|
box-shadow: 0 10px 25px rgba(0,0,0,0.2);
|
||||||
|
|
||||||
/* 🔥 CORRECTION : Animation d'entrée et scroll interne si trop haut */
|
|
||||||
position: relative;
|
position: relative;
|
||||||
transform: translateY(20px) scale(0.95);
|
transform: translateY(20px) scale(0.95);
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
max-height: 90vh;
|
max-height: 85vh; /* Réduit légèrement pour éviter le débordement */
|
||||||
overflow-y: auto;
|
overflow-y: auto; /* Permet le scroll si nécessaire */
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal > * {
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal .import-section {
|
||||||
|
margin: 1.5rem 0;
|
||||||
|
padding: 1.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.overlay.open .modal {
|
.overlay.open .modal {
|
||||||
|
|||||||
Reference in New Issue
Block a user