Skip to content

Commit

Permalink
Update custom css so that the edges of all images are rounded (instea…
Browse files Browse the repository at this point in the history
…d of harsh boxes). With 10px rounding, this effect will not be as apparent with images with white along the border
  • Loading branch information
VWJF committed Dec 16, 2024
1 parent 7787de2 commit c0909c7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion static/css/owl.carousel.centered.customers.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ Text wrapping
img {
height: 100%;
width: 100%;
object-fit: contain;
object-fit: cover;
border-radius: 10px;
overflow: hidden;
}

.fig-caption {
Expand Down Expand Up @@ -153,6 +155,10 @@ Carousel text overlay over image
.application-image img {
max-width: 100%; /* Ensures the image is responsive */
height: auto;
border-radius: 10px;
object-fit: cover;
overflow: hidden;

}

figure img.custom-image {
Expand Down

0 comments on commit c0909c7

Please sign in to comment.