fix paddings

This commit is contained in:
ghost 2021-12-30 08:47:59 +02:00
parent b37353ff30
commit 2bd6758aa6
2 changed files with 10 additions and 5 deletions

View File

@ -154,7 +154,6 @@ a:active {
padding-left: 73px;
letter-spacing: 0.2px;
font-size: 13px;
padding-right: 8px;
}
.container .content .item .message .retwist {
@ -162,13 +161,15 @@ a:active {
padding: 8px;
border-radius: 3px;
background: #e6e6e6;
margin-top: 8px
}
.container .content .item .message .quote {
margin-top: 8px
}
.container .item .message .info {
font-weight: bold;
/*border-bottom: 1px #ccc solid;*/
padding-bottom: 4px;
margin-bottom: 8px;
}
.container .item .message .info .time {

View File

@ -53,7 +53,11 @@ var Home = {
time
)
)
).append(rt).append(message)
).append(rt).append(
$('<div/>', {
'class': (message != '' ? 'quote' : '')
}).append(message)
)
)
);
}