36 lines
No EOL
592 B
CSS
36 lines
No EOL
592 B
CSS
.mastodon-container {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.mastodon-comment {
|
|
border: 1px solid #999;
|
|
border-radius: 6px;
|
|
margin: 0.5rem 0;
|
|
display: flex;
|
|
padding: 0.5rem 1rem;
|
|
}
|
|
|
|
.mastodon-comment .avatar img {
|
|
margin-right: 1rem;
|
|
min-width: 60px;
|
|
}
|
|
|
|
.mastodon-comment .content {
|
|
width: 100%;
|
|
}
|
|
|
|
.mastodon-comment .date {
|
|
float: right;
|
|
}
|
|
|
|
.mastodon-comment .ellipsis::after {
|
|
content: "\2026";
|
|
}
|
|
|
|
.mastodon-comment .invisible {
|
|
font-size: 0;
|
|
line-height: 0;
|
|
display: inline-block;
|
|
width: 0;
|
|
height: 0;
|
|
} |