gridsome-starter-blog
gridsome-starter-blog copied to clipboard
templating
hi there,
just launched the starter and everything works fine. But I get stuck trying to change the layout. I would like to fix the Card height and on a big screen would like to have the post listing in 2 columns. I have tried, but somehow I can't get it right. Any advice? Thanks
For showing the posts in a 2 column format, I would try using CSS grid on the posts
div.
.posts {
display: grid;
grid-template-columns: auto auto;
}