You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
334 B
21 lines
334 B
html{
|
|
overflow-y: auto
|
|
}
|
|
|
|
.message-container{
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 999;
|
|
overflow: auto;
|
|
height: 100vh;
|
|
}
|
|
.message-container::-webkit-scrollbar{
|
|
display: none;
|
|
}
|
|
.message-container .message{
|
|
min-width: 250px;
|
|
max-width: 250px;
|
|
margin: 25px;
|
|
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
|
|
}
|
|
|