forked from open-webui/open-webui
		
	feat: fullscreen mode
This commit is contained in:
		
							parent
							
								
									1def55cf09
								
							
						
					
					
						commit
						27ae4d0d82
					
				
					 5 changed files with 49 additions and 5 deletions
				
			
		|  | @ -781,7 +781,11 @@ | |||
| <Navbar {title} shareEnabled={messages.length > 0} {initNewChat} {tags} {addTag} {deleteTag} /> | ||||
| <div class="min-h-screen w-full flex justify-center"> | ||||
| 	<div class=" py-2.5 flex flex-col justify-between w-full"> | ||||
| 		<div class="max-w-2xl mx-auto w-full px-3 md:px-0 mt-10"> | ||||
| 		<div | ||||
| 			class="{$settings?.fullScreenMode ?? null | ||||
| 				? 'max-w-full' | ||||
| 				: 'max-w-2xl md:px-0'}mx-auto w-full px-4 md:px-0 mt-10" | ||||
| 		> | ||||
| 			<ModelSelector bind:selectedModels disabled={messages.length > 0} /> | ||||
| 		</div> | ||||
| 
 | ||||
|  |  | |||
|  | @ -810,7 +810,11 @@ | |||
| 	/> | ||||
| 	<div class="min-h-screen w-full flex justify-center"> | ||||
| 		<div class=" py-2.5 flex flex-col justify-between w-full"> | ||||
| 			<div class="max-w-2xl mx-auto w-full px-3 md:px-0 mt-10"> | ||||
| 			<div | ||||
| 				class="{$settings?.fullScreenMode ?? null | ||||
| 					? 'max-w-full' | ||||
| 					: 'max-w-2xl md:px-0'} mx-auto w-full px-4 mt-10" | ||||
| 			> | ||||
| 				<ModelSelector | ||||
| 					bind:selectedModels | ||||
| 					disabled={messages.length > 0 && !selectedModels.includes('')} | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy J. Baek
						Timothy J. Baek