mirror of https://github.com/shuang854/Turtle
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
501 B
CSS
34 lines
501 B
CSS
.message-card {
|
|
overflow-y: auto;
|
|
height: calc(100% - 125px);
|
|
padding: 0;
|
|
}
|
|
|
|
.message-grid {
|
|
margin-right: 0;
|
|
height: 100%;
|
|
user-select: text;
|
|
}
|
|
|
|
.right-align {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.my-msg {
|
|
padding: 6px;
|
|
border-radius: 5px;
|
|
margin-bottom: 4px;
|
|
max-width: 70%;
|
|
background: var(--ion-color-primary);
|
|
color: #fff;
|
|
}
|
|
|
|
.other-msg {
|
|
padding: 6px;
|
|
border-radius: 5px;
|
|
margin-bottom: 4px;
|
|
max-width: 70%;
|
|
background: var(--ion-color-secondary);
|
|
color: #fff;
|
|
}
|