1

Ajout de la pagination pour les dossiers

This commit is contained in:
2025-11-26 22:58:13 +01:00
parent 15b1df425b
commit bfdbed8436
4 changed files with 21 additions and 14 deletions

View File

@@ -19,15 +19,16 @@
ul {
position: absolute;
top: 100%;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
gap: var(--gap-half);
overflow: auto;
max-height: 50vh;
min-width: 300px;
width: auto;
left: 50%;
margin-left: -150px;
width: max-content;
max-width: calc(100vw - (2 * var(--padding)));
padding: var(--padding);
list-style: none;
border-radius: var(--radius-pagination);
@@ -55,4 +56,4 @@
color: var(--color-text-muted);
}
}
}
}