feat: hide media if spoiler

This commit is contained in:
Tom (plebeius.eth)
2024-06-03 13:52:55 +02:00
parent daaba0f006
commit 052476ad1a
4 changed files with 41 additions and 53 deletions
@@ -18,6 +18,17 @@
display: inline-block;
}
.spoiler {
display: inline-block;
margin: 3px 20px 5px 20px;
background-color: black;
color: white;
display: flex;
cursor: pointer;
justify-content: center;
align-items: center;
}
@media (max-width: 640px) {
.subplebbitAvatar {
max-width: 125px;
@@ -52,6 +63,10 @@
float: left;
}
.thumbnail video {
cursor: pointer;
}
.hide {
display: none !important;
}