All checks were successful
Build and push container image / build-and-push-image (push) Successful in 4m7s
23 lines
356 B
CSS
23 lines
356 B
CSS
.gallery {
|
|
width: 100%;
|
|
}
|
|
|
|
.gallery .gallery-images {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.gallery .gallery-images img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.gallery h2.gallery-date {
|
|
position: relative;
|
|
top: 0;
|
|
left: 0;
|
|
} |