volga_ctf_2022/services/myblog/frontend/layout_blog/Post/Post.module.css
2023-01-15 13:53:21 +03:00

20 lines
No EOL
278 B
CSS

.post{
grid-area: post;
display: grid;
grid-template-columns: 0.5fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
grid-template-areas:
"title . ."
". content .";
max-height: 200px;
}
.title{
grid-area: title;
}
.content{
grid-area: content;
}