You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			37 lines
		
	
	
		
			628 B
		
	
	
	
		
			SCSS
		
	
			
		
		
	
	
			37 lines
		
	
	
		
			628 B
		
	
	
	
		
			SCSS
		
	
| .window-header {
 | |
|   padding: 14px 20px;
 | |
|   border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
 | |
|   position: relative;
 | |
| 
 | |
|   display: flex;
 | |
|   justify-content: space-between;
 | |
|   align-items: center;
 | |
| }
 | |
| 
 | |
| .window-header-title {
 | |
|   max-width: calc(100% - 100px);
 | |
|   overflow: hidden;
 | |
| 
 | |
|   .window-header-main-title {
 | |
|     font-size: 20px;
 | |
|     font-weight: bolder;
 | |
|     overflow: hidden;
 | |
|     text-overflow: ellipsis;
 | |
|     white-space: nowrap;
 | |
|     display: block;
 | |
|     max-width: 50vw;
 | |
|   }
 | |
| 
 | |
|   .window-header-sub-title {
 | |
|     font-size: 14px;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .window-actions {
 | |
|   display: inline-flex;
 | |
| }
 | |
| 
 | |
| .window-action-button:not(:first-child) {
 | |
|   margin-left: 10px;
 | |
| }
 |