Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
14 changes: 7 additions & 7 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,11 @@
</div>
<div class="aw-big-padding-section-level-2">
<div class="aw-container">
<h3
<h2
class="aw-title aw-u-color-text-primary aw-u-text-align-center aw-u-max-width-600 u-margin-inline-auto"
>
Trusted by developers from the world's leading organizations
</h3>
</h2>
<ul class="aw-grid-3c-4c-6c is-for-logos aw-u-padding-block-start-80">
<li>
<img src="/images/logos/trusted-by/apple.svg" alt="Apple" width="42" height="48" />
Expand Down Expand Up @@ -450,14 +450,14 @@
class="u-flex u-flex-wrap u-gap-16 aw-u-margin-block-32-mobile aw-u-margin-block-40-not-mobile"
>
{#each platforms as platform}
<Tooltip>
<li>
<li>
<Tooltip>
<a href={platform.href} class="aw-box-icon">
<img src={platform.image} alt="{platform.name} Logo" width="32" height="32" />
</a>
</li>
<svelte:fragment slot="tooltip">{platform.name}</svelte:fragment>
</Tooltip>
<svelte:fragment slot="tooltip">{platform.name}</svelte:fragment>
</Tooltip>
</li>
{/each}
</ul>
<a href="/docs/sdks" class="aw-button is-secondary" style:align-self="start">
Expand Down
23 changes: 15 additions & 8 deletions src/routes/docs/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,9 @@
Learn how to build like a team of hundreds
</h1>
<p class="aw-description u-max-width-600">
Appwrite is a backend development platform built by hundreds of open-source developers, where you can build any application at any scale using the coding languages and tools you want.
Appwrite is a backend development platform built by hundreds of open-source developers,
where you can build any application at any scale using the coding languages and tools you
want.
</p>
</section>
<section class="aw-hero is-align-start">
Expand Down Expand Up @@ -312,6 +314,7 @@
</header>
<p
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
style="word-break: keep-all;"
>
Learn Appwrite Auth, Databases, and more with React.
</p>
Expand All @@ -338,9 +341,10 @@
</header>
<p
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
style="word-break: keep-all;"
>
Learn Appwrite Auth, Databases, and more with SvelteKit.
</p>
Learn Appwrite Auth, Databases, and more with SvelteKit.
</p>
</article>
</a>
</li>
Expand All @@ -364,8 +368,9 @@
</header>
<p
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
style="word-break: keep-all;"
>
Learn Appwrite Auth, Databases, and more with Vue.
Learn Appwrite Auth, Databases, and more with Vue.
</p>
</article>
</a>
Expand All @@ -390,9 +395,10 @@
</header>
<p
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
style="word-break: keep-all;"
>
Coming soon...
</p>
Coming soon...
</p>
</article>
</a>
</li>
Expand All @@ -416,9 +422,10 @@
</header>
<p
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
style="word-break: keep-all;"
>
Coming soon...
</p>
Coming soon...
</p>
</article>
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/scss/6-elements/_select.scss
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
--p-select-menu-box-shadow-color: var(--transparent);
}
@mixin dark-mode() {
--p-select-menu-bg-color: var(--aw-color-white) / 0.08;
--p-select-menu-bg-color: var(--aw-color-greyscale-800);
--p-select-menu-border-color: var(--aw-color-white) / 0.10;
--p-select-menu-box-shadow-color: var(--transparent);
}
Expand Down