 2081f771e4
			
		
	
	
	
	
	2081f771e4* docs: add custom titlebar example * docs: add links and other small edits * docs: add panel window docs * docs: remove panel example * docs: specify expected emphasis style * docs: responding to feedback * docs: fix section names in links * docs: rework baseWindow note * docs: making window customization its own section * responding to feedback
		
			
				
	
	
		
			16 lines
		
	
	
		
			No EOL
		
	
	
		
			334 B
			
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			No EOL
		
	
	
		
			334 B
			
		
	
	
	
		
			CSS
		
	
	
	
	
	
| body {
 | |
|     margin: 0;
 | |
|     padding: 0;
 | |
|     background-color: rgba(0, 0, 0, 0); /* Transparent background */
 | |
| }
 | |
| .white-circle {
 | |
|     width: 100px;
 | |
|     height: 100px;
 | |
|     background-color: white;
 | |
|     border-radius: 50%;
 | |
|     display: flex;
 | |
|     align-items: center;
 | |
|     justify-content: center;
 | |
|     app-region: drag;
 | |
|     user-select: none;
 | |
| } |