Update README.md
Browse files
README.md
CHANGED
|
@@ -266,7 +266,7 @@
|
|
| 266 |
transform: translateX(3px);
|
| 267 |
}
|
| 268 |
.axolotl-container {
|
| 269 |
-
text-align: center;
|
| 270 |
margin: 30px 0;
|
| 271 |
}
|
| 272 |
.axolotl-container img {
|
|
@@ -275,9 +275,9 @@
|
|
| 275 |
box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
|
| 276 |
border: 2px solid rgba(255, 192, 203, 0.5);
|
| 277 |
transition: transform 0.3s ease;
|
| 278 |
-
display: block; /* Make
|
| 279 |
-
margin: 0 auto; /* Center it horizontally */
|
| 280 |
-
}
|
| 281 |
.axolotl-container img:hover {
|
| 282 |
transform: scale(1.05);
|
| 283 |
}
|
|
|
|
| 266 |
transform: translateX(3px);
|
| 267 |
}
|
| 268 |
.axolotl-container {
|
| 269 |
+
text-align: center; /* This is correctly applied to center the image itself */
|
| 270 |
margin: 30px 0;
|
| 271 |
}
|
| 272 |
.axolotl-container img {
|
|
|
|
| 275 |
box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
|
| 276 |
border: 2px solid rgba(255, 192, 203, 0.5);
|
| 277 |
transition: transform 0.3s ease;
|
| 278 |
+
display: block; /* Make the image a block element */
|
| 279 |
+
margin: 0 auto; /* Center it horizontally within its parent */
|
| 280 |
+
}
|
| 281 |
.axolotl-container img:hover {
|
| 282 |
transform: scale(1.05);
|
| 283 |
}
|