Skip to content

Commit

Permalink
fix: spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
kaaps committed Mar 1, 2024
1 parent de9b4c3 commit 2ebfc6f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/blocks/estimation.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
selectedRadio[i] = '';
}}
>
{t('clear-all')}
{t('estimate.clear')}
</button>
</div>
<div class="grid grid-cols-2 xl:flex xl:flex-col gap-2">
Expand Down Expand Up @@ -132,7 +132,7 @@
{/each}
{#each estimationsCheckbox as options}
<div
class="gap-2 grid col-span-2 grid-cols-2 gap-x-5 [&:last-child>p]:col-span-2"
class="gap-2 grid col-span-2 grid-cols-2 xl:gap-x-5 [&:last-child>p]:col-span-2"
>
<p class="pt-4 leading-none text-foreground-secondary text-sm grid pb-2">
{options.name}
Expand Down
3 changes: 2 additions & 1 deletion src/lib/i18n/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,5 +171,6 @@
"proposals.package.reply.manpower.title": "What is estimated manpower?",
"proposals.package.reply.manpower.desc": "Manpower refers to the total capacity available for the project.",
"handbook.last.updated": "Last updated",
"handbook.navigation.website": "Significa website"
"handbook.navigation.website": "Significa website",
"estimate.clear": "Clear"
}
3 changes: 2 additions & 1 deletion src/lib/i18n/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ export const TranslationKeys = [
'proposals.package.reply.manpower.title',
'proposals.package.reply.manpower.desc',
'handbook.last.updated',
'handbook.navigation.website'
'handbook.navigation.website',
'estimate.clear'
] as const;

export type TranslationKey = (typeof TranslationKeys)[number];
Expand Down

0 comments on commit 2ebfc6f

Please sign in to comment.