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