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

32 lines
717 B
SCSS
Raw Normal View History

2021-11-18 09:39:49 +01:00
.nitro-chat-history {
width: $chat-history-width;
height: $chat-history-height;
2021-10-22 04:32:17 +02:00
2021-12-05 02:12:26 +01:00
background-color: #1C323F;
border: 2px solid rgba(255, 255, 255, 0.5);
border-radius: 0.25rem;
.nitro-card-header-container {
background-color: #3d5f6e;
color: #fff;
}
2021-11-18 09:39:49 +01:00
.chat-history-content {
.chat-history-container {
2021-10-22 04:32:17 +02:00
min-height: 200px;
2021-10-23 00:37:54 +02:00
2021-11-18 09:39:49 +01: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
}
}
}