diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000000..a681be17cb --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,11 @@ +# This configuration file was automatically generated by Gitpod. +# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) +# and commit this file to your remote git repository to share the goodness with others. + +# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart + +tasks: + - init: pnpm install && pnpm run build + command: pnpm run dev + + diff --git a/src/routes/pricing/+page.svelte b/src/routes/pricing/+page.svelte index 4faaa42c89..5bc19a953a 100644 --- a/src/routes/pricing/+page.svelte +++ b/src/routes/pricing/+page.svelte @@ -75,15 +75,15 @@
@@ -97,7 +97,7 @@

Pro

$15
-
per user/month
+
per member/month

For pro developers and teams that need to scale their products.

@@ -109,17 +109,13 @@

Everything in Starter plus:

@@ -136,7 +132,7 @@
$685
-
per organiztion/month
+
per organization/month

For scaling teams and agencies that need dedicated support.

@@ -148,10 +144,15 @@
-

Everything in Starter & Pro, plus:

+

Everything in Starter & Pro plus:

diff --git a/src/routes/pricing/compare-plans.svelte b/src/routes/pricing/compare-plans.svelte index 0dec73e320..ca92931dfc 100644 --- a/src/routes/pricing/compare-plans.svelte +++ b/src/routes/pricing/compare-plans.svelte @@ -104,7 +104,7 @@ }, { title: 'Webhooks', - free: '2 Per project', + free: '2 per project', pro: 'Unlimited', scale: 'Unlimited' }, @@ -122,9 +122,9 @@ }, { title: 'Additional organization member roles', - free: 'Unlimited', - pro: 'Unlimited', - scale: 'Unlimited' + free: '-', + pro: '-', + scale: 'Coming Soon' } ] }, @@ -133,12 +133,12 @@ rows: [ { title: 'Users', - free: '75,000 Monthly active users', - pro: '200,000 Monthly active users', - scale: '500,000 Monthly active users' + free: '75,000 monthly active users', + pro: '200,000 monthly active users', + scale: '500,000 monthly active users' }, { - title: 'Additional users (cost per user)', + title: 'Additional users', free: '-', pro: '$3 per 1,000 users', scale: '$3 per 1,000 users' @@ -198,7 +198,7 @@ { title: 'File size limit', free: '50MB', - pro: '5TB', + pro: '5GB', scale: '5TB' }, { @@ -238,7 +238,7 @@ { title: 'Concurrent connections', free: '250', - pro: '750', + pro: '500', scale: '1500' }, { diff --git a/src/scss/6-elements/_lists.scss b/src/scss/6-elements/_lists.scss index 1071b90072..8b029c09bd 100644 --- a/src/scss/6-elements/_lists.scss +++ b/src/scss/6-elements/_lists.scss @@ -69,7 +69,7 @@ .#{$p}-checked-list-circle { display:flex; flex-direction:column; gap:pxToRem(20); li { - display:flex; justify-items:baseline; gap:pxToRem(8); + display:flex; align-items: start; gap:pxToRem(8); &::before { @include checked-badge; } } } diff --git a/src/scss/abstract/mixins/_checked-badge.scss b/src/scss/abstract/mixins/_checked-badge.scss index 65da6c5781..c3abc071b3 100644 --- a/src/scss/abstract/mixins/_checked-badge.scss +++ b/src/scss/abstract/mixins/_checked-badge.scss @@ -3,8 +3,10 @@ content: ""; display:block; inline-size:pxToRem(20); - block-size:pxToRem(20); + min-inline-size:pxToRem(20); + block-size:pxToRem(24); background-repeat: no-repeat; background-size: contain; background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMTAiIGN5PSIxMCIgcj0iOCIgZmlsbD0iI0ZEMzY2RSIgZmlsbC1vcGFjaXR5PSIwLjA4IiBzdHJva2U9IiNGRDM2NkUiIHN0cm9rZS1vcGFjaXR5PSIwLjMyIiBzdHJva2Utd2lkdGg9IjEuMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik02LjI1IDExLjVMOC43NSAxMy41TDEzLjc1IDciIHN0cm9rZT0iI0U0RTRFNyIgc3Ryb2tlLXdpZHRoPSIxLjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K); + background-position-y: center; } \ No newline at end of file