mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
address @danieldietzler suggestions
This commit is contained in:
parent
2ae5ea3188
commit
7e862443a8
3 changed files with 12 additions and 12 deletions
|
|
@ -31,7 +31,7 @@
|
||||||
</div>
|
</div>
|
||||||
<br />
|
<br />
|
||||||
<div class="border border-gray-300 dark:border-immich-dark-gray rounded-3xl pt-1 pb-6 dark:text-white">
|
<div class="border border-gray-300 dark:border-immich-dark-gray rounded-3xl pt-1 pb-6 dark:text-white">
|
||||||
<p class="text-xs font-medium p-4">{$t('download').toUpperCase()}</p>
|
<p class="uppercase text-xs font-medium p-4">{$t('download')}</p>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onclick={() => modalManager.show(ObtainiumConfigModal, {})}
|
onclick={() => modalManager.show(ObtainiumConfigModal, {})}
|
||||||
|
|
|
||||||
|
|
@ -11,27 +11,27 @@
|
||||||
<ModalBody
|
<ModalBody
|
||||||
><div class="flex flex-col sm:grid sm:grid-cols-2 gap-5 text-immich-primary dark:text-immich-dark-primary">
|
><div class="flex flex-col sm:grid sm:grid-cols-2 gap-5 text-immich-primary dark:text-immich-dark-primary">
|
||||||
<div>
|
<div>
|
||||||
<label class="font-medium text-immich-primary dark:text-immich-dark-primary text-sm" for="fdroid-link"
|
<label class="font-medium text-immich-primary dark:text-immich-dark-primary text-sm" for="fdroid-link">
|
||||||
>F-Droid</label
|
F-Droid
|
||||||
>
|
</label>
|
||||||
<a href="https://f-droid.org/packages/app.alextran.immich/" target="_blank" id="fdroid-link"
|
<a href="https://f-droid.org/packages/app.alextran.immich/" target="_blank" id="fdroid-link"
|
||||||
><img class="pt-2 pr-10" alt="Get it on F-Droid" src={fdroidBadge} /></a
|
><img class="pt-2 pr-10" alt="Get it on F-Droid" src={fdroidBadge} /></a
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<label class="font-medium text-immich-primary dark:text-immich-dark-primary text-sm" for="play-store-link"
|
<label class="font-medium text-immich-primary dark:text-immich-dark-primary text-sm" for="play-store-link">
|
||||||
>Google Play</label
|
Google Play
|
||||||
>
|
</label>
|
||||||
<a href="https://play.google.com/store/apps/details?id=app.alextran.immich" target="_blank" id="play-store-link"
|
<a href="https://play.google.com/store/apps/details?id=app.alextran.immich" target="_blank" id="play-store-link"
|
||||||
><img alt="Get it on Google Play" src={playStoreBadge} /></a
|
><img alt="Get it on Google Play" src={playStoreBadge} /></a
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<label class="font-medium text-immich-primary dark:text-immich-dark-primary text-sm" for="app-store-link"
|
<label class="font-medium text-immich-primary dark:text-immich-dark-primary text-sm" for="app-store-link">
|
||||||
>App Store</label
|
App Store
|
||||||
>
|
</label>
|
||||||
<a href="https://apps.apple.com/us/app/immich/id1613945652" target="_blank" id="app-store-link"
|
<a href="https://apps.apple.com/us/app/immich/id1613945652" target="_blank" id="app-store-link"
|
||||||
><img class="pt-2 pr-5" alt="Download on the App Store" src={appStoreBadge} width="90%" /></a
|
><img class="pt-2 pr-5" alt="Download on the App Store" src={appStoreBadge} width="90%" /></a
|
||||||
>
|
>
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
import { user } from '$lib/stores/user.store';
|
import { user } from '$lib/stores/user.store';
|
||||||
import { setUserOnboarding, updateAdminOnboarding } from '@immich/sdk';
|
import { setUserOnboarding, updateAdminOnboarding } from '@immich/sdk';
|
||||||
import {
|
import {
|
||||||
mdiCellphone,
|
mdiCellphoneArrowDownVariant,
|
||||||
mdiCloudCheckOutline,
|
mdiCloudCheckOutline,
|
||||||
mdiHarddisk,
|
mdiHarddisk,
|
||||||
mdiIncognito,
|
mdiIncognito,
|
||||||
|
|
@ -90,7 +90,7 @@
|
||||||
component: OnboardingMobileApp,
|
component: OnboardingMobileApp,
|
||||||
role: OnboardingRole.USER,
|
role: OnboardingRole.USER,
|
||||||
title: $t('mobile_app'),
|
title: $t('mobile_app'),
|
||||||
icon: mdiCellphone, // or you can use mdiCellphoneArrowDownVariant
|
icon: mdiCellphoneArrowDownVariant, // or you can use mdiCellphone
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue