aboutsummaryrefslogtreecommitdiff
path: root/app/scss/comments.scss
blob: a3ce50f9d52d3a4246d5117e313b171499d19e26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.img-thumbnail-1 {
	padding: 0px;
	// width: 100%;
}

.comments {
	list-style: none;
	padding: 0;

	.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;
		}
	}
}