You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
409 B
23 lines
409 B
@use "./const.scss" as *;
|
|
|
|
.pinned-container {
|
|
background-color: $background-color;
|
|
z-index: 1;
|
|
}
|
|
|
|
.pinned-container .blog-post-head {
|
|
display: none;
|
|
}
|
|
|
|
.pinned-container .blog-post-content > * {
|
|
width: 80vw;
|
|
}
|
|
.pinned-container .blog-post-content > .kg-card {
|
|
width: auto;
|
|
}
|
|
|
|
@media all and (max-width: 512px) {
|
|
.pinned-container .blog-post-content > * {
|
|
width: 90vw;
|
|
}
|
|
}
|
|
|