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/posts/NoLinkImage/NoLinkImage.scss

31 lines
561 B
SCSS

.NoLinkImage {
padding: 1rem 0;
// scss
.no-link-item{
transition: .4s;
background: #ffffff;
padding: 5px;
border-radius: var(--xshop-border-radius);
h3{
font-size: 20px;
margin-top: .4rem;
}
p{
color: gray;
}
img{
height: 64px;
}
&:hover{
filter: grayscale(1);
}
}
&.dark-mode{
.no-link-item{
background: #21252b;
color: whitesmoke;
}
}
}