mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:37:11 -04:00 
			
		
		
		
	fix: only show scrollbars if needed (#7191)
The class 'overflow-y-scroll' will always show the scrollbar. Changing this to 'overflow-y-auto' will only show the scrollbar when needed. All instances of the 'overflow-y-scroll' class have been changed. Fixes: #7190
This commit is contained in:
		
							parent
							
								
									66d3daa074
								
							
						
					
					
						commit
						0795410a41
					
				| @ -84,7 +84,7 @@ | ||||
|   {#if showMenu} | ||||
|     <div | ||||
|       transition:fly={{ y: -30, x: 30, duration: 100 }} | ||||
|       class="text-md fixed z-50 flex min-w-[250px] max-h-[70vh] overflow-y-scroll immich-scrollbar flex-col rounded-2xl bg-gray-100 py-2 text-black shadow-lg dark:bg-gray-700 dark:text-white {className}" | ||||
|       class="text-md fixed z-50 flex min-w-[250px] max-h-[70vh] overflow-y-auto immich-scrollbar flex-col rounded-2xl bg-gray-100 py-2 text-black shadow-lg dark:bg-gray-700 dark:text-white {className}" | ||||
|     > | ||||
|       {#each options as option (option)} | ||||
|         {@const renderedOption = renderOption(option)} | ||||
|  | ||||
| @ -73,7 +73,7 @@ | ||||
| </script> | ||||
| 
 | ||||
| <div | ||||
|   class="max-h-screen w-[500px] max-w-[95vw] overflow-y-scroll rounded-3xl border bg-immich-bg p-4 py-8 shadow-sm dark:border-immich-dark-gray dark:bg-immich-dark-gray dark:text-immich-dark-fg" | ||||
|   class="max-h-screen w-[500px] max-w-[95vw] overflow-y-auto immich-scrollbar rounded-3xl border bg-immich-bg p-4 py-8 shadow-sm dark:border-immich-dark-gray dark:bg-immich-dark-gray dark:text-immich-dark-fg" | ||||
| > | ||||
|   <div class="flex flex-col place-content-center place-items-center gap-4 px-4"> | ||||
|     <ImmichLogo class="text-center" height="100" width="100" /> | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user