i'm trying to place three elements next to my sidebar image using CSS grid. They should align to the top of the image like this:
How I want the page
But when I do this CSS grid layes everything out in such a way that my text elements get divided over the height of the image like this:
How the page is right now
This is the code I'm using:
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-template-rows: minmax(min-content, 1fr);
grid-gap: 10px;