24 lines
		
	
	
		
			525 B
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			525 B
		
	
	
	
		
			Plaintext
		
	
	
| /*
 | |
| Copyright 2024 New Vector Ltd.
 | |
| Copyright 2017 Vector Creations Ltd
 | |
| 
 | |
| SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
 | |
| Please see LICENSE files in the repository root for full details.
 | |
| */
 | |
| 
 | |
| .mx_TimelineSeparator {
 | |
|     clear: both;
 | |
|     margin: 4px 0;
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
|     font: var(--cpd-font-body-md-regular);
 | |
|     color: var(--cpd-color-text-primary);
 | |
| }
 | |
| 
 | |
| .mx_TimelineSeparator > hr {
 | |
|     flex: 1 1 0;
 | |
|     height: 0;
 | |
|     border: none;
 | |
|     border-bottom: 1px solid var(--cpd-color-gray-400);
 | |
| }
 |