73 lines
1.3 KiB
SCSS
73 lines
1.3 KiB
SCSS
page-chat {
|
|
|
|
.toolbar-title {
|
|
|
|
.title-profile-avatar {
|
|
vertical-align: bottom;
|
|
}
|
|
}
|
|
|
|
.list {
|
|
|
|
.message-bubble {
|
|
background-color: #fdb315;
|
|
border-radius: 0.5rem;
|
|
margin: 1rem 1rem 2.5rem auto;
|
|
max-width: 75%;
|
|
overflow: visible;
|
|
padding: 0.75rem;
|
|
position: relative;
|
|
|
|
&::after {
|
|
border: 0.625em solid transparent;
|
|
border-bottom: 0;
|
|
border-right: 0;
|
|
border-top-color: #fdb315;
|
|
bottom: 0;
|
|
content: '';
|
|
height: 0;
|
|
right: 2rem;
|
|
margin-bottom: -0.625em;
|
|
margin-left: -0.312em;
|
|
position: absolute;
|
|
width: 0;
|
|
}
|
|
|
|
&.is-user {
|
|
background-color: #6fbedf;
|
|
margin: 1rem auto 2.5rem 1rem;
|
|
|
|
&::after {
|
|
border: 0.625em solid transparent;
|
|
border-bottom: 0;
|
|
border-left: 0;
|
|
border-top-color: #6fbedf;
|
|
right: auto;
|
|
margin-bottom: -0.625em;
|
|
margin-right: -0.312em;
|
|
left: 2rem;
|
|
}
|
|
}
|
|
|
|
.item-inner {
|
|
border-bottom: none;
|
|
}
|
|
|
|
ion-label {
|
|
overflow: visible;
|
|
text-overflow: unset;
|
|
margin: 0 0.75rem;
|
|
}
|
|
|
|
p {
|
|
color: #1d1e1f;
|
|
white-space: normal;
|
|
|
|
&.timestamp {
|
|
color: #acacac;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|