Skip to content

Commit

Permalink
Make images with captions prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
onnimonni committed Oct 26, 2023
1 parent 134f5c3 commit 22f4406
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions assets/docs/scss/custom/structure/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,33 @@ i {
font-size: var(--font-size-sm);
}

// Images with captions
.docs-content .main-content {
// I wasn't sure if figures are used with mermaid or code classes so ensure that img is present
figure:has(img) {
max-width: 30rem;
margin:0 auto;
text-align: center !important;
padding: 0.5rem;

img {
max-width: 100%;
height: auto;
filter: drop-shadow(rgba(0, 0, 0, 0.5) 1px 1px 5px);
}
figcaption {
padding: 0.5rem 0;
}
// Adds small rotated arrow towards the image
figcaption::before {
content: '';
display: inline-block;
transform: rotate(90deg);
padding-right: 0.5rem;
}
}
}

// <figcaption>

.docs-content figcaption {
Expand Down

0 comments on commit 22f4406

Please sign in to comment.