Files
5chan/src/components/post/post.module.css
T

33 lines
615 B
CSS
Raw Normal View History

2024-03-22 15:31:02 +01:00
.thread {
clear: both;
}
.postDesktop .link a {
color: var(--post-link-text-color);
text-decoration: var(--post-link-text-decoration);
}
.postDesktop .link a:hover {
color: var(--post-link-text-color-hover);
text-decoration: var(--post-link-text-decoration-hover);
}
.postDesktop .postInfo {
width: 100%;
}
.postDesktop .subject {
color: var(--post-subject-text-color);
font-weight: var(--post-subject-font-weight);
}
.postDesktop .name {
color: var(--post-name-text-color);
font-weight: var(--post-name-font-weight);
}
@media (max-width: 640px) {
.postDesktop {
display: none;
}
2024-03-22 15:31:02 +01:00
}