Image round image, centered image

This commit is contained in:
Palash Bauri 2022-02-12 12:28:35 +00:00
parent 206c670f36
commit bc3bb4034c
1 changed files with 6 additions and 1 deletions

View File

@ -786,13 +786,18 @@ nav.navigation a {
.post-content img {
border-radius: 4px;
margin: 1rem 0;
margin: 1rem auto;
}
.post-content img[src*="#center"] {
margin: 1rem auto;
}
.post-content img[src*="#round"] {
margin: 1rem auto;
border-radius: 50%;
}
.post-content figure.align-center {
text-align: center;
}