add lab/projects
All checks were successful
Deploy / Deploy to Production (push) Successful in 12s

This commit is contained in:
Julie Blanc 2026-02-25 18:51:58 +01:00
parent e36eae0b6f
commit c34384adab
12 changed files with 319 additions and 12 deletions

View file

@ -3173,6 +3173,15 @@ main .page__header ul.details li:hover {
}
}
.page__header + #related-investigations {
padding-top: calc(var(--spacing) * 1);
}
@media screen and (max-width: 768px) {
.page__header + #related-investigations {
padding-top: 0;
}
}
[data-template=investigation] main {
position: relative;
}

File diff suppressed because one or more lines are too long

View file

@ -24,3 +24,9 @@
}
.page__header + #related-investigations{
padding-top: calc(var(--spacing) * 1);
@media #{$small} {
padding-top: 0;
}
}