Подскажите, как прижать синий блок вправо, а серый влево?
#chatManager{
font-size: 20px;
font-family: "Helvetica Neue";
display: flex;
flex-flow: row wrap;
flex-direction: column;
overflow-y: scroll;
overflow-x: hidden;
padding: 0 10px 0 10px;
height: 100%;
}
#chatManager p{
word-wrap: break-word;
line-height: 17px;
position: relative;
padding: 10px 20px;
border-radius: 25px;
margin-right: 10px;
margin-left: 10px;
}
#chatManager p:before, #chatManager p:after{
content: "";
position: absolute;
bottom: 3px;
height: 16px;
}
#chatManager .from-me {
color: white;
background: #0b93f6;
align-self: flex-end;
bottom: 0;
margin-bottom: 5px;
}
#chatManager .from-me:before {
right: -8px;
border-right: 20px solid #0b93f6;
border-bottom-left-radius: 16px 14px;
-webkit-transform: translate(0, -2px);
transform: translate(0, -2px);
}
#chatManager .from-me:after {
right: -56px;
width: 26px;
background: white;
border-bottom-left-radius: 10px;
-webkit-transform: translate(-30px, -2px);
transform: translate(-30px, -2px);
}
#chatManager .from-them {
background: #e5e5ea;
color: black;
margin-bottom: 5px;
}
#chatManager .from-them:before {
left: -8px;
border-left: 20px solid #e5e5ea;
border-bottom-right-radius: 16px 14px;
-webkit-transform: translate(0, -2px);
transform: translate(0, -2px);
}
#chatManager .from-them:after{
left: 4px;
width: 26px;
background: white;
border-bottom-right-radius: 10px;
-webkit-transform: translate(-30px, -2px);
transform: translate(-30px, -2px);
}
Чтобы так получилось