forked from React-Group/interstellar_ai
		
	
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			891 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			891 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
/* container.css */
 | 
						|
.container,
 | 
						|
.content {
 | 
						|
    padding-top: 10vh;
 | 
						|
    display: flex;
 | 
						|
    height: 100vh;
 | 
						|
    width: 100vw;
 | 
						|
    overflow: hidden;
 | 
						|
    position: relative; /* Ensure relative positioning for proper transitions */
 | 
						|
}
 | 
						|
 | 
						|
.left-panel {
 | 
						|
    width: 25vw; /* Adjust as needed */
 | 
						|
    transition: width 0.3s ease, opacity 0.3s ease, visibility 0.3s ease; /* Smooth transitions for all properties */
 | 
						|
}
 | 
						|
 | 
						|
.left-panel.hidden {
 | 
						|
    opacity: 0; /* Fade out when hidden */
 | 
						|
    width: 0; /* Collapse width to 0 */
 | 
						|
    visibility: hidden; /* Hide visibility while collapsing */
 | 
						|
}
 | 
						|
 | 
						|
.conversation-container {
 | 
						|
    flex: 1;
 | 
						|
    transition: margin-left 0.3s ease; /* Smooth margin adjustment */
 | 
						|
}
 | 
						|
 | 
						|
/* Adjust margin-left when panel is shown or hidden */
 | 
						|
.conversation-container.expanded {
 | 
						|
    margin-left: 1vw;
 | 
						|
}
 | 
						|
 | 
						|
.conversation-container.collapsed {
 | 
						|
    margin-left: 1vw; /* Space for the left panel */
 | 
						|
}
 |