Update src/styles/comments.css
All checks were successful
Release to Staging / build_and_release (push) Successful in 1m4s

This commit is contained in:
freakoverse 2025-03-01 23:50:56 +00:00
parent 4f402d7816
commit 2a59037c9c

View File

@ -659,3 +659,20 @@ hover {
.IBMSMSMBSSCL_CBText > audio { .IBMSMSMBSSCL_CBText > audio {
width: 100%; width: 100%;
} }
.IBMSMSMBSSCL_CBImgGroup {
width: 100%;
display: grid;
grid-template-columns: 1fr;
grid-gap: 10px;
}
.IBMSMSMBSSCL_CBImgGroup > * {
transition: ease 0.2s;
object-fit: cover;
aspect-ratio: 16/9;
}
.IBMSMSMBSSCL_CBImgGroup > *:hover {
transform: scale(1.02);
}