Skip to content

Commit e87e7e6

Browse files
committed
Upload file: json-schema-to-openapi-schema-wework.html
1 parent a8448e8 commit e87e7e6

File tree

1 file changed

+20
-6
lines changed

1 file changed

+20
-6
lines changed

projects/json-schema-to-openapi-schema-wework.html

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,18 @@
6767
margin-left: 20px;
6868
}
6969

70-
/* Article */
71-
.site-main article img{
72-
width: 100%;
73-
height: auto;
74-
}
70+
71+
/* Apply responsiveness to all images except those inside anchor tags */
72+
.site-main article img:not(a img) {
73+
width: 100%; /* Make them responsive */
74+
height: auto; /* Maintain aspect ratio */
75+
}
76+
77+
/* Ensure that images inside anchor tags keep their natural size */
78+
.site-main article a img {
79+
width: auto; /* Retain original size */
80+
height: auto; /* Maintain aspect ratio */
81+
}
7582

7683
/* Heading styles */
7784
#changelogList h1 {
@@ -563,10 +570,17 @@ <h3 id="added-1">Added</h3>
563570
<span id="updatedAt" class="ms-1">October 26, 2024</span>
564571
</div>
565572
<div class="metadata-item d-flex align-items-center mt-2">
566-
<i class="bi bi-code-slash me-2"></i>
573+
<i class="bi bi-file-earmark-code me-2"></i>
567574
<strong>Language:</strong>
568575
<span id="language" class="ms-1">JavaScript</span>
569576
</div>
577+
578+
<div class="metadata-item d-flex align-items-center mt-2">
579+
<i class="bi bi-shield-check"></i>
580+
<strong>License:</strong>
581+
<span id="license" class="ms-1">Unknown</span>
582+
</div>
583+
570584

571585
<a href="#" target="_blank" class="btn btn-outline-dark btn-sm" id="homepageBtn">
572586
<i class="bi bi-house-door me-2"></i>Visit Homepage

0 commit comments

Comments
 (0)