contentdb/app/scss/comments.scss

30 lines
441 B
SCSS
Raw Normal View History

2018-12-22 21:13:43 +01:00
.img-thumbnail-1 {
padding: 0px;
// width: 100%;
2018-12-26 00:02:49 +01:00
background: white;
2018-06-12 00:11:15 +02:00
}
.comments {
2018-12-22 21:13:43 +01:00
list-style: none;
padding: 0;
2018-06-12 00:20:18 +02:00
2018-12-22 21:13:43 +01: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-12 00:20:18 +02:00
}
2018-06-12 00:11:15 +02:00
}