mirror of
https://github.com/hexastack/hexabot
synced 2025-06-26 18:27:28 +00:00
63 lines
1.1 KiB
SCSS
63 lines
1.1 KiB
SCSS
.sc-chat-window {
|
|
width: 370px;
|
|
height: calc(100% - 120px);
|
|
max-height: 590px;
|
|
position: fixed;
|
|
right: 25px;
|
|
bottom: 100px;
|
|
box-sizing: border-box;
|
|
box-shadow: 0px 7px 40px 2px rgba(148, 149, 150, 0.1);
|
|
background: white;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
border-radius: 10px;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
animation: fadeIn;
|
|
animation-duration: 0.3s;
|
|
animation-timing-function: ease-in-out;
|
|
z-index: 10000;
|
|
}
|
|
|
|
.sc-chat-window.closed {
|
|
opacity: 0;
|
|
display: none;
|
|
bottom: 90px;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
0% {
|
|
display: none;
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
display: flex;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.sc-message--me {
|
|
text-align: right;
|
|
}
|
|
.sc-message--them {
|
|
text-align: left;
|
|
}
|
|
|
|
@media (max-width: 450px) {
|
|
.sc-chat-window {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-height: 100%;
|
|
right: 0px;
|
|
bottom: 0px;
|
|
border-radius: 0px;
|
|
}
|
|
.sc-chat-window {
|
|
transition: 0.1s ease-in-out;
|
|
}
|
|
.sc-chat-window.closed {
|
|
bottom: 0px;
|
|
}
|
|
}
|