contentdb/app/scss/comments.scss

40 lines
549 B
SCSS
Raw Permalink Normal View History

2018-12-22 12:13:43 -08:00
.img-thumbnail-1 {
padding: 0px;
// width: 100%;
2018-12-25 15:02:49 -08:00
background: white;
2018-06-11 15:11:15 -07:00
}
.comments {
2018-12-22 12:13:43 -08:00
list-style: none;
padding: 0;
2018-06-11 15:20:18 -07:00
2018-12-22 12:13:43 -08:00
.card {
position:relative;
.card-header:before {
position: absolute;
top: 11px;
right: 100%;
width: 0;
height: 0;
display: block;
content:" ";
border-color: transparent;
border-style: solid solid outset;
pointer-events:none;
border-right-color: #444;
border-width: 14px;
}
2018-06-11 15:20:18 -07:00
}
.user-photo {
width: 60px;
height: 60px;
object-fit: cover;
}
2022-04-23 12:53:38 -07:00
.status-update p {
margin: 0;
}
2018-06-11 15:11:15 -07:00
}