mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-08-21 06:49:51 +02:00
22 lines
No EOL
524 B
CSS
22 lines
No EOL
524 B
CSS
body .page .content.message-list .message {
|
|
display: grid;
|
|
box-sizing: border-box;
|
|
grid-template-columns: 1fr 1fr;
|
|
grid-gap: inherit;
|
|
padding: 2px;
|
|
margin-bottom: 5px;
|
|
}
|
|
body .page .content.message-list .message .pfp {
|
|
display: none !important;
|
|
}
|
|
body .page .content.message-list .message .name {
|
|
color: #dbdbdb;
|
|
}
|
|
body .page .content.message-list .message .timestamp {
|
|
text-align: right;
|
|
color: #dbdbdb;
|
|
}
|
|
body .page .content.message-list .message .body {
|
|
grid-column-start: 1;
|
|
grid-column-end: 3;
|
|
} |