25 lines
471 B
CSS
25 lines
471 B
CSS
.Chat {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
background: var(--ifm-background-color);
|
|
border: 1px solid var(--ifm-color-emphasis-200);
|
|
border-radius: var(--ifm-global-radius);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.Chat__statusMessage {
|
|
font-size: .65rem;
|
|
color: #666;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
padding: .75rem 2.5rem;
|
|
background: #eee;
|
|
}
|
|
|
|
.Chat__statusMessage i {
|
|
margin-right: .25rem;
|
|
color: #667eea;
|
|
}
|