-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21f3d94
commit c95befe
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
src/lib/wizards/functions/components/specificationsTooltip.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<div class="u-flex-vertical u-gap-16"> | ||
<div class="u-flex-vertical u-gap-8"> | ||
<p>Additional CPU and RAM are available for Pro and Scale teams.</p> | ||
<p> | ||
<a | ||
class="link" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
href="https://appwrite.io/docs/products/functions/specificatinos">Learn more</a> | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<style> | ||
div { | ||
color: hsl(var(--color-neutral-50)); | ||
line-height: 1.25rem; | ||
&:first-child { | ||
color: hsl(var(--color-neutral-70)); | ||
} | ||
} | ||
:global(.theme-dark) div { | ||
color: hsl(var(--color-neutral-20)); | ||
&:first-child { | ||
color: hsl(var(--color-neutral-10)); | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters