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.
22 lines
389 B
SCSS
22 lines
389 B
SCSS
4 months ago
|
.SimplePost {
|
||
|
// scss
|
||
|
h1{
|
||
|
font-size: 27px;
|
||
|
padding: 1rem;
|
||
|
color: var(--xshop-primary);
|
||
|
}
|
||
|
|
||
|
img{
|
||
|
max-height: 40vh;
|
||
|
width: 100%;
|
||
|
object-fit: cover;
|
||
|
}
|
||
|
|
||
|
.tag{
|
||
|
background: var(--xshop-primary);
|
||
|
padding: 3px .7rem;
|
||
|
color: var(--xshop-diff);
|
||
|
border-radius: var(--xshop-border-radius);
|
||
|
}
|
||
|
}
|