CSS for only some background cards

Edit, margin-top: calc(-35% + 1px);
I also changed the Height: 120% to Height: 100vh;



/* Image */
[data-test="app-vertical-list"] .card-image-container img {
height:100vh;
}

/* Zone Bottom area */
[data-test="app-vertical-list"] .bottom-area {
background:transparent !important;
margin-top: calc(-35% + 1px);
z-index:1;
}

I modified my small demo application with this option :slight_smile:

7 Likes