noscript-discord/assets/style.css

21 lines
362 B
CSS
Raw Normal View History

2024-02-28 22:44:05 +13:00
body {
background: #333333;
color: white;
padding: 0;
margin: 0;
}
.container {
display: flex;
flex-direction: column-reverse;
}
2024-02-28 19:15:37 +13:00
.messages {
2024-02-28 22:44:05 +13:00
max-height: 100%;
display: flex;
flex-direction: column;
overflow-y: auto;
justify-content: flex-end;
flex-wrap: nowrap;
2024-02-28 19:15:37 +13:00
}