Update app.py
Browse files
app.py
CHANGED
|
@@ -30,7 +30,7 @@ custom_css = """
|
|
| 30 |
|
| 31 |
.example-gallery {
|
| 32 |
display: grid;
|
| 33 |
-
grid-template-columns: repeat(auto-fill, minmax(
|
| 34 |
gap: 20px;
|
| 35 |
padding: 20px;
|
| 36 |
}
|
|
@@ -48,7 +48,7 @@ custom_css = """
|
|
| 48 |
}
|
| 49 |
.example-item img {
|
| 50 |
width: 100%;
|
| 51 |
-
height:
|
| 52 |
object-fit: cover;
|
| 53 |
}
|
| 54 |
|
|
|
|
| 30 |
|
| 31 |
.example-gallery {
|
| 32 |
display: grid;
|
| 33 |
+
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
| 34 |
gap: 20px;
|
| 35 |
padding: 20px;
|
| 36 |
}
|
|
|
|
| 48 |
}
|
| 49 |
.example-item img {
|
| 50 |
width: 100%;
|
| 51 |
+
height: 100px; /* 원래 250px 에서 100px 으로 축소 */
|
| 52 |
object-fit: cover;
|
| 53 |
}
|
| 54 |
|