File size: 446 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.activity-log-example {
	.formatted-header {
		margin-top: 35px;
		margin-bottom: 35px;
		@include breakpoint-deprecated( "<480px" ) {
			margin-top: 40px;
			margin-bottom: 20px;
		}
	}

	.feature-example {
		// Make overflowing border visible
		margin-right: -1px;
		padding-right: 1px;
	}

	@include breakpoint-deprecated( "<480px" ) {
		// Don't show more than 2 first items
		.activity-log-item:nth-child(n + 3) {
			display: none;
		}
	}
}