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