EvkoGS commited on
Commit
aeded2a
·
1 Parent(s): 775317a

possible readme fix

Browse files
Files changed (1) hide show
  1. README.md +8 -5
README.md CHANGED
@@ -23,23 +23,26 @@ inference: true
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
  }
36
 
37
  .image-grid .wide-image {
38
- width: 100%;
39
  }
40
  </style>
41
 
42
- <h1 class="artisan-title">ArtisanXL</h1>
43
 
44
  <div class="image-grid">
45
  <img src="images/Picasso.webp" alt="Square image 1">
 
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
 
45
+ <h1 class="artisan-title">Artisan XL</h1>
46
 
47
  <div class="image-grid">
48
  <img src="images/Picasso.webp" alt="Square image 1">