chore: improve onboarding, app download links styling (#23134)

This commit is contained in:
Alex 2025-10-21 21:10:12 -05:00 committed by GitHub
parent 032de9ff2f
commit 76f5036026
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 82 additions and 93 deletions

View file

@ -20,7 +20,7 @@
<AppShellHeader>
<NavigationBar showUploadButton={false} noBorder />
</AppShellHeader>
<AppShellSidebar bind:open={sidebarStore.isOpen}>
<AppShellSidebar bind:open={sidebarStore.isOpen} class="border-none shadow-none">
<AdminSidebar />
</AppShellSidebar>

View file

@ -6,22 +6,26 @@
import { t } from 'svelte-i18n';
</script>
<HStack wrap>
<p>{$t('mobile_app_download_onboarding_note')}</p>
<HStack>
<Button
size="large"
size="medium"
shape="semi-round"
fullWidth
onclick={() => modalManager.show(AppDownloadModal, {})}
leadingIcon={mdiCellphoneArrowDownVariant}
>
{$t('app_stores')}
</Button>
<Button
size="medium"
shape="semi-round"
fullWidth
onclick={() => modalManager.show(ObtainiumConfigModal, {})}
leadingIcon={mdiLinkEdit}
>
{$t('obtainium_configurator')}
</Button>
<Button
size="large"
shape="semi-round"
onclick={() => modalManager.show(AppDownloadModal, {})}
leadingIcon={mdiCellphoneArrowDownVariant}
>
{$t('app_download_links')}
</Button>
</HStack>
<p>{$t('mobile_app_download_onboarding_note')}</p>