ensure valid rss items (#31)

* ensure valid rss items

* remove dayjs package
This commit is contained in:
Troy 2025-01-18 15:52:48 +00:00 committed by GitHub
parent ff81ab71bf
commit 3a886c4493
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 25 additions and 19 deletions

View file

@ -25,14 +25,22 @@
@layer components {
.prose img {
@apply transition-transform hover:scale-[98%] active:scale-[200%];
@apply cursor-pointer transition-transform hover:scale-[98%] active:scale-[200%];
}
}
@media print {
body {
margin: 0;
color: #000;
background-color: #fff;
background: none;
color: black;
}
header,
footer,
main {
max-width: unset !important;
}
header,
footer {
display: none;
}
}