This commit is contained in:
2026-03-17 13:29:15 -05:00
parent e78e3a980a
commit f1b0a840a5
2 changed files with 18 additions and 1 deletions

View File

@@ -250,6 +250,23 @@ img, picture, video, canvas, svg{
}
}
/* Vision Image Responsive Styles */
.vision-responsive-img {
width: 100%;
height: auto;
max-width: 500px;
object-fit: cover;
border-radius: 8px;
display: block;
}
/* Mobile optimization */
@media (max-width: 768px) {
.vision-responsive-img {
max-width: 100%;
}
}
a{
text-decoration: none;
}