Skip to content

Commit

Permalink
Merge pull request #138 from GetStream/feat/img-series-prod
Browse files Browse the repository at this point in the history
feat: support series of images
  • Loading branch information
myandrienko committed Apr 2, 2024
2 parents 3cb632c + 03aefeb commit 6aab19c
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/css/components/markdown.scss
Expand Up @@ -10,8 +10,18 @@
background-color: #edeeeb;

@media (min-width: 997px) {
padding: 2.25rem;
border-radius: 1rem;
padding: 2.25rem 2.25rem 0;

&:first-child {
border-top-left-radius: 1rem;
border-top-right-radius: 1rem;
}

&:last-child {
padding-bottom: 2.25rem;
border-bottom-left-radius: 1rem;
border-bottom-right-radius: 1rem;
}
}
}

Expand Down

0 comments on commit 6aab19c

Please sign in to comment.