EvkoGS commited on
Commit
a7867ae
1 Parent(s): aeded2a

possible readme fix

Browse files
Files changed (1) hide show
  1. README.md +12 -7
README.md CHANGED
@@ -23,22 +23,27 @@ inference: true
23
  }
24
 
25
  .image-grid {
26
- display: grid;
27
- grid-template-columns: 1fr 1fr;
28
- grid-template-rows: auto auto auto;
29
- gap: 0;
30
  margin-bottom: 20px;
31
  }
32
 
33
  .image-grid img {
34
- width: 100%;
35
  height: auto;
36
  display: block;
37
- object-fit: cover;
 
38
  }
39
 
40
  .image-grid .wide-image {
41
- grid-column: 1 / -1;
 
 
 
 
 
 
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