Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correction of indentation on the wallet page. Issues-35 #48

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions denta/src/routes/[lang]/crm/[companyId]/wallet/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,26 @@
</script>

<CenteredPage>
<h1>Кошелек</h1>
<div class="flex flex-col justify-center gap-5">
orby-tech marked this conversation as resolved.
Show resolved Hide resolved
orby-tech marked this conversation as resolved.
Show resolved Hide resolved
<h1 class="text-center">Кошелек</h1>
<p>
orby-tech marked this conversation as resolved.
Show resolved Hide resolved
Баланс: {0} руб.
Баланс: <span class="font-bold">{0} руб.</span>
orby-tech marked this conversation as resolved.
Show resolved Hide resolved
</p>
<p>
Расход в этом месяце: {0} руб.
Расход в этом месяце: <span class="font-bold">{0} руб.</span>
</p>
<p>
Расход в день: {0} руб.
Расход в день: <span class="font-bold">{0} руб.</span>
</p>
<p>
Баланса хватит на {0} дней
</p>

<SupportLink href={`/${$page.params.lang}/crm/${$page.params.companyId}/top-up`}
orby-tech marked this conversation as resolved.
Show resolved Hide resolved
>Пополнить</SupportLink
>
<SupportLink href={`/${$page.params.lang}/crm/${$page.params.companyId}/transactions`}
>История транзакций</SupportLink
>
</div>

orby-tech marked this conversation as resolved.
Show resolved Hide resolved
</CenteredPage>