webapp/src/components/Inbox/Message.module.scss
Igor Lobanov 41fc515087 lint
2022-12-08 11:41:43 +01:00

65 lines
944 B
SCSS

.Message {
display: flex;
flex-direction: column;
margin: 3.2rem 0;
.body {
background: #f6f6f6;
font-size: 14px;
max-width: 60%;
border-radius: 16px;
padding: 12px 16px;
position: relative;
display: flex;
margin-right: auto;
p {
margin: 0;
}
a {
color: inherit;
text-decoration: underline;
&:hover {
color: inherit;
}
}
}
.time {
margin-top: 8px;
font-size: 10px;
color: #9fa1a7;
}
.author {
display: flex;
flex-direction: row;
align-items: center;
gap: 6px;
margin-bottom: 8px;
.name {
color: #141414;
font-weight: 500;
font-size: 14px;
line-height: 20px;
}
}
&.own {
.body {
justify-content: flex-end;
margin-left: auto;
margin-right: unset;
background: #000;
color: #fff;
}
.time {
text-align: right;
}
}
}