learnix / src /app /components /styles /ImageContainer.css
shashidharak99's picture
Upload files
7d51e81 verified
/* IMAGE CONTAINER (centered and responsive) */
.image-container {
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.responsive-image {
width: 100%;
/* max-width: 800px; */
border-radius: 8px; /* small radius */
object-fit: cover; /* maintain aspect */
}
/* Mobile / small screens */
@media (max-width: 600px) {
.responsive-image {
width: 100%;
height: auto;
}
}