forked from open-webui/open-webui
		
	fix: styling
This commit is contained in:
		
							parent
							
								
									9523ecb87f
								
							
						
					
					
						commit
						476e8f002f
					
				
					 1 changed files with 35 additions and 33 deletions
				
			
		|  | @ -60,40 +60,42 @@ | ||||||
| 			<div class="mb-3"> | 			<div class="mb-3"> | ||||||
| 				{#if changelog} | 				{#if changelog} | ||||||
| 					{#each Object.keys(changelog) as version} | 					{#each Object.keys(changelog) as version} | ||||||
| 						<div class="font-bold text-xl mb-1"> | 						<div class=" mb-3 pr-2"> | ||||||
| 							v{version} - {changelog[version].date} | 							<div class="font-bold text-xl mb-1 dark:text-white"> | ||||||
| 						</div> | 								v{version} - {changelog[version].date} | ||||||
| 
 |  | ||||||
| 						<hr class=" dark:border-gray-800 my-2" /> |  | ||||||
| 
 |  | ||||||
| 						{#each Object.keys(changelog[version]).filter((section) => section !== 'date') as section} |  | ||||||
| 							<div class=""> |  | ||||||
| 								<div |  | ||||||
| 									class="font-bold capitalize text-xs {section === 'added' |  | ||||||
| 										? 'text-white bg-blue-600' |  | ||||||
| 										: section === 'fixed' |  | ||||||
| 										? 'text-white bg-green-600' |  | ||||||
| 										: section === 'changed' |  | ||||||
| 										? 'text-white bg-yellow-600' |  | ||||||
| 										: section === 'removed' |  | ||||||
| 										? 'text-white bg-red-600' |  | ||||||
| 										: ''}  w-fit px-3 rounded-full my-3" |  | ||||||
| 								> |  | ||||||
| 									{section} |  | ||||||
| 								</div> |  | ||||||
| 
 |  | ||||||
| 								<div class="my-1.5 px-1.5"> |  | ||||||
| 									{#each Object.keys(changelog[version][section]) as item} |  | ||||||
| 										<div class="text-sm mb-2"> |  | ||||||
| 											<div class="font-semibold"> |  | ||||||
| 												{changelog[version][section][item].title} |  | ||||||
| 											</div> |  | ||||||
| 											<div class="my-1.5">{changelog[version][section][item].content}</div> |  | ||||||
| 										</div> |  | ||||||
| 									{/each} |  | ||||||
| 								</div> |  | ||||||
| 							</div> | 							</div> | ||||||
| 						{/each} | 
 | ||||||
|  | 							<hr class=" dark:border-gray-800 my-2" /> | ||||||
|  | 
 | ||||||
|  | 							{#each Object.keys(changelog[version]).filter((section) => section !== 'date') as section} | ||||||
|  | 								<div class=""> | ||||||
|  | 									<div | ||||||
|  | 										class="font-bold uppercase text-xs {section === 'added' | ||||||
|  | 											? 'text-white bg-blue-600' | ||||||
|  | 											: section === 'fixed' | ||||||
|  | 											? 'text-white bg-green-600' | ||||||
|  | 											: section === 'changed' | ||||||
|  | 											? 'text-white bg-yellow-600' | ||||||
|  | 											: section === 'removed' | ||||||
|  | 											? 'text-white bg-red-600' | ||||||
|  | 											: ''}  w-fit px-3 rounded-full my-2" | ||||||
|  | 									> | ||||||
|  | 										{section} | ||||||
|  | 									</div> | ||||||
|  | 
 | ||||||
|  | 									<div class="my-1.5 px-1.5"> | ||||||
|  | 										{#each Object.keys(changelog[version][section]) as item} | ||||||
|  | 											<div class="text-sm mb-2"> | ||||||
|  | 												<div class="font-semibold uppercase"> | ||||||
|  | 													{changelog[version][section][item].title} | ||||||
|  | 												</div> | ||||||
|  | 												<div class="mb-2 mt-1">{changelog[version][section][item].content}</div> | ||||||
|  | 											</div> | ||||||
|  | 										{/each} | ||||||
|  | 									</div> | ||||||
|  | 								</div> | ||||||
|  | 							{/each} | ||||||
|  | 						</div> | ||||||
| 					{/each} | 					{/each} | ||||||
| 				{/if} | 				{/if} | ||||||
| 			</div> | 			</div> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy J. Baek
						Timothy J. Baek