|
@@ -24,7 +24,7 @@
|
|
|
<Modal bind:show>
|
|
|
<div class="px-5 pt-4 dark:text-gray-300 text-gray-700">
|
|
|
<div class="flex justify-between items-start">
|
|
|
- <div class="text-xl font-bold">
|
|
|
+ <div class="text-xl font-semibold">
|
|
|
{$i18n.t('What’s New in')}
|
|
|
{$WEBUI_NAME}
|
|
|
<Confetti x={[-1, -0.25]} y={[0, 0.5]} />
|
|
@@ -63,7 +63,7 @@
|
|
|
{#if changelog}
|
|
|
{#each Object.keys(changelog) as version}
|
|
|
<div class=" mb-3 pr-2">
|
|
|
- <div class="font-bold text-xl mb-1 dark:text-white">
|
|
|
+ <div class="font-semibold text-xl mb-1 dark:text-white">
|
|
|
v{version} - {changelog[version].date}
|
|
|
</div>
|
|
|
|
|
@@ -72,7 +72,7 @@
|
|
|
{#each Object.keys(changelog[version]).filter((section) => section !== 'date') as section}
|
|
|
<div class="">
|
|
|
<div
|
|
|
- class="font-bold uppercase text-xs {section === 'added'
|
|
|
+ class="font-semibold uppercase text-xs {section === 'added'
|
|
|
? 'text-white bg-blue-600'
|
|
|
: section === 'fixed'
|
|
|
? 'text-white bg-green-600'
|