Merge pull request #6338 from sboursen-scinote/sb_SCI-8126-fix3

Fix no-result placeholder position for archived project list [SCI-8126]
This commit is contained in:
Alex Kriuchykhin 2023-10-04 15:46:51 +02:00 committed by GitHub
commit e4e4992415
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,10 @@
min-height: calc(100vh - var(--content-header-size) - var(--navbar-height));
.no-results-container {
align-self: center;
grid-column: 1 / -1;
grid-row: 1 / -1;
justify-self: center;
}
.no-results-img {
@ -92,8 +95,10 @@
}
.no-results-container {
align-self: center;
grid-column: 1 / -1;
grid-row: span;
grid-row: 2 / -1;
justify-self: center;
}
.card {