You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/resources/views/segments/galleries_page/GalleriesList/GalleriesList.scss

41 lines
760 B
SCSS

.GalleriesList {
margin-top: 2rem;
.gallrey-item{
height: 350px;
width: 100%;
position: relative;
overflow: hidden;
border-radius: var(--xshop-border-radius);
img,h4{
position: absolute;
left: 0;
right: 0;
transition: 400ms;
}
img{
top: 0;
height: 100%;
width: 100%;
object-fit: cover;
}
h4{
bottom: -60px;
background: var(--xshop-primary);
color: var(--xshop-diff);
padding: 11px 0;
}
&:hover{
img{
transform: scale(1.4);
}
h4{
bottom: 0;
}
}
}
}