2015-12-10 16:48:07 +00:00
|
|
|
.sms-message {
|
|
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
margin: 0 0 $gutter 0;
|
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
bottom: -12px;
|
|
|
|
|
right: 5px;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 25px;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
background: $panel-colour;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 20;
|
|
|
|
|
bottom: -15px;
|
|
|
|
|
right: -5px;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
background: $white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&-wrapper {
|
2015-12-17 11:14:19 +00:00
|
|
|
width: 100%;
|
2015-12-11 11:32:24 +00:00
|
|
|
display: inline-block;
|
2015-12-10 16:48:07 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
position: relative;
|
|
|
|
|
z-index: 30;
|
|
|
|
|
padding: $gutter/2;
|
|
|
|
|
background: $panel-colour;
|
|
|
|
|
border-radius: 5px;
|
2015-12-11 11:32:24 +00:00
|
|
|
white-space: normal;
|
2015-12-10 16:48:07 +00:00
|
|
|
}
|
|
|
|
|
|
2015-12-11 12:02:21 +00:00
|
|
|
&-recipient {
|
2015-12-11 13:52:58 +00:00
|
|
|
@include copy-19;
|
2015-12-11 12:02:21 +00:00
|
|
|
color: $secondary-text-colour;
|
2015-12-18 17:03:49 +00:00
|
|
|
margin: -$gutter-half 0 $gutter 0;
|
2015-12-11 12:02:21 +00:00
|
|
|
}
|
|
|
|
|
|
2016-01-13 16:21:29 +00:00
|
|
|
&-name {
|
|
|
|
|
@include bold-19;
|
2016-01-13 16:27:54 +00:00
|
|
|
margin: 50px 0 10px 0;
|
2016-01-13 16:21:29 +00:00
|
|
|
}
|
|
|
|
|
|
2015-12-10 16:48:07 +00:00
|
|
|
}
|