Skip to content

Commit

Permalink
Merge pull request #137 from GetStream/feat/img-series
Browse files Browse the repository at this point in the history
feat: support image series
  • Loading branch information
myandrienko committed Apr 2, 2024
2 parents 1ec6f7f + 0399588 commit e7098cd
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 e7098cd

Please sign in to comment.