possible readme fix
Browse files
README.md
CHANGED
@@ -23,22 +23,27 @@ inference: true
|
|
23 |
}
|
24 |
|
25 |
.image-grid {
|
26 |
-
display:
|
27 |
-
|
28 |
-
grid-template-rows: auto auto auto;
|
29 |
-
gap: 0;
|
30 |
margin-bottom: 20px;
|
31 |
}
|
32 |
|
33 |
.image-grid img {
|
34 |
-
width:
|
35 |
height: auto;
|
36 |
display: block;
|
37 |
-
|
|
|
38 |
}
|
39 |
|
40 |
.image-grid .wide-image {
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
}
|
43 |
</style>
|
44 |
|
|
|
23 |
}
|
24 |
|
25 |
.image-grid {
|
26 |
+
display: flex;
|
27 |
+
flex-wrap: wrap;
|
|
|
|
|
28 |
margin-bottom: 20px;
|
29 |
}
|
30 |
|
31 |
.image-grid img {
|
32 |
+
width: 50%;
|
33 |
height: auto;
|
34 |
display: block;
|
35 |
+
margin: 0 !important; /* Override any default margins */
|
36 |
+
padding: 0;
|
37 |
}
|
38 |
|
39 |
.image-grid .wide-image {
|
40 |
+
width: 100%;
|
41 |
+
}
|
42 |
+
|
43 |
+
/* Override Hugging Face's default styling */
|
44 |
+
.prose :where(img):not(:where([class~=not-prose],[class~=not-prose] *)) {
|
45 |
+
margin-top: 0 !important;
|
46 |
+
margin-bottom: 0 !important;
|
47 |
}
|
48 |
</style>
|
49 |
|