page investigations
All checks were successful
Deploy / Deploy to Production (push) Successful in 11s

This commit is contained in:
Julie Blanc 2026-01-06 17:14:32 +01:00
parent ea648498e2
commit 6cf52a6703
20 changed files with 556 additions and 278 deletions

View file

@ -1,5 +1,8 @@
.page-enquete{
position: relative;
[data-template="investigation-summary"] main{
position: relative;
header{
.page-type{
@ -77,8 +80,7 @@
border-bottom: var(--border-light);
.dl__group{
display: grid;
grid-template-columns: 2fr 3fr;
@include grid-content();
border-top: var(--border-light);
padding: calc(var(--spacing)*0.5) 0;
}
@ -137,16 +139,6 @@
}
// .page-enquete{
// #banner--page.is-sticky {
// position: fixed;
// bottom: 0;
// left: 0;
// right: 0;
// z-index: 100;
// }
// }
@ -157,7 +149,7 @@
@media #{$small}{
.page-enquete{
[data-template="investigation-summary"] main{
header{
padding-top: calc(var(--spacing)*1.5);
@ -243,7 +235,7 @@
@media #{$x-small}{
.page-enquete{
[data-template="investigation-summary"] main{
#section__dl .dl__group{
column-gap: 1ch;
@ -263,7 +255,7 @@
@media #{$small-up}{
.page-enquete{
[data-template="investigation-summary"] main{
#banner--page{
height: calc(100vh - var(--header-h));
@ -338,7 +330,7 @@
@media #{$medium-up}{
.page-enquete{
[data-template="investigation-summary"] main{
#banner--page{
width: calc((100% - var(--max-w-content))/2);

View file

@ -0,0 +1,17 @@
[data-template="investigations"] main{
#container-cards{
max-width: var(--max-w-container);
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
grid-auto-rows: minmax(100px, auto);
grid-gap: var(--padding-body);
margin-bottom: 10vh;
}
}