forked from CITKParus/P8-Panels
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			460 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			460 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| :root {
 | |
|     --border-color: #dee2e6;
 | |
|     --layout-bg: #ffffff;
 | |
| }
 | |
| 
 | |
| .layout {
 | |
|     background-color: var(--layout-bg);
 | |
| }
 | |
| 
 | |
| .layout-item__container {
 | |
|     border: 1px solid var(--border-color);
 | |
|     border-radius: 4px;
 | |
| }
 | |
| 
 | |
| .component-view__wrap {
 | |
|     height: 100%;
 | |
| }
 | |
| 
 | |
| .component-view__container {
 | |
|     height: 100%;
 | |
|     overflow: auto;
 | |
|     padding: 10px;
 | |
| }
 | |
| 
 | |
| .component-view__container__empty {
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
|     justify-content: center;
 | |
| }
 |