nitro-react/src/views/chat-history/ChatHistoryView.scss

28 lines
500 B
SCSS
Raw Normal View History

2021-10-22 04:32:17 +02:00
.nitro-chat-history
{
2021-10-23 00:37:54 +02:00
width: 300px;
2021-10-22 04:32:17 +02:00
.chat-history-content
{
.chat-history-container
{
min-height: 200px;
2021-10-23 00:37:54 +02:00
.chat-history-list
{
.chathistory-entry
{
2021-10-24 02:00:48 +02:00
.light {
background-color: #121f27;
2021-10-23 00:37:54 +02:00
}
2021-10-24 02:00:48 +02:00
.dark {
background-color: #0d171d;
2021-10-23 00:37:54 +02:00
}
}
}
2021-10-22 04:32:17 +02:00
}
}
}