update projects loading message #114

This commit is contained in:
Timothée Goguely 2025-02-05 11:59:52 +01:00
parent fd9db75f2a
commit 0ec3d1669f

View file

@ -71,8 +71,9 @@ section {
--flow-space: var(--space-16);
min-height: calc(100vh - 8.5rem);
}
section:empty::after {
content: 'Aucun projet pour le moment.';
section:empty::after,
section.loading::after {
content: 'Aucun projet pour le moment';
position: absolute;
inset: 0;
display: grid;
@ -88,4 +89,7 @@ section:empty::after {
background-repeat: no-repeat;
background-size: var(--space-40);
}
section.loading::after {
content: 'Chargement des projets…';
}
</style>