render motds in topic and topics views

This commit is contained in:
2025-11-27 22:25:03 +03:00
parent d0dfd3a4c3
commit 8b5b38e38b
10 changed files with 149 additions and 3 deletions

View File

@@ -1381,3 +1381,30 @@ footer {
max-height: 300px;
overflow: scroll;
}
.motd {
display: flex;
background-color: #c1ceb1;
border: 2px outset rgb(217.26, 220.38, 213.42);
padding: 10px 15px;
margin: 10px 0;
}
.motd-icon-container {
display: flex;
min-width: 80px;
padding-right: 15px;
}
.motd-content-container {
display: flex;
flex-direction: column;
align-self: center;
flex-grow: 1;
padding-right: 25%;
}
.motd-title {
font-weight: bold;
font-size: larger;
}