mirror of https://github.com/4xmen/xshop.git
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.
31 lines
561 B
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;
|
|
}
|
|
}
|
|
}
|