feat: add christmas theme

This commit is contained in:
Tom (plebeius.eth)
2024-12-24 17:13:12 +01:00
parent 5a498cbcb6
commit eb3a630cc3
15 changed files with 300 additions and 53 deletions
+24
View File
@@ -43,6 +43,30 @@
opacity: 0.5;
}
.xmasHatWrapper {
position: relative;
}
.xmasHat {
position: absolute;
pointer-events: none;
top: -80px;
left: 0;
z-index: 9999;
}
@media (max-width: 640px) {
.xmasHat {
width: 100px;
top: -20px;
left: -15px;
}
}
.xmasHat img {
border: none;
}
/* clearfix to contain float elements */
.postDesktop::after {
content: "";
+1
View File
@@ -16,6 +16,7 @@ import styles from './post.module.css';
export interface PostProps {
index?: number;
isHidden?: boolean;
hasThumbnail?: boolean;
post?: any;
postReplyCount?: number;
reply?: any;