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.
28 lines
507 B
SCSS
28 lines
507 B
SCSS
.SimplePost {
|
|
// scss
|
|
h1{
|
|
font-size: 27px;
|
|
padding: 1rem;
|
|
color: var(--xshop-primary);
|
|
|
|
span{
|
|
font-size: 16px;
|
|
margin-top: 5px;
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|