Skip to content

Commit db5c78e

Browse files
Merge pull request #106 from appwrite/fix-last-minute-QA
Fix-last-minute-QA
2 parents aa515be + c1505c3 commit db5c78e

File tree

3 files changed

+23
-16
lines changed

3 files changed

+23
-16
lines changed

src/routes/+page.svelte

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -173,11 +173,11 @@
173173
</div>
174174
<div class="aw-big-padding-section-level-2">
175175
<div class="aw-container">
176-
<h3
176+
<h2
177177
class="aw-title aw-u-color-text-primary aw-u-text-align-center aw-u-max-width-600 u-margin-inline-auto"
178178
>
179179
Trusted by developers from the world's leading organizations
180-
</h3>
180+
</h2>
181181
<ul class="aw-grid-3c-4c-6c is-for-logos aw-u-padding-block-start-80">
182182
<li>
183183
<img src="/images/logos/trusted-by/apple.svg" alt="Apple" width="42" height="48" />
@@ -450,14 +450,14 @@
450450
class="u-flex u-flex-wrap u-gap-16 aw-u-margin-block-32-mobile aw-u-margin-block-40-not-mobile"
451451
>
452452
{#each platforms as platform}
453-
<Tooltip>
454-
<li>
453+
<li>
454+
<Tooltip>
455455
<a href={platform.href} class="aw-box-icon">
456456
<img src={platform.image} alt="{platform.name} Logo" width="32" height="32" />
457457
</a>
458-
</li>
459-
<svelte:fragment slot="tooltip">{platform.name}</svelte:fragment>
460-
</Tooltip>
458+
<svelte:fragment slot="tooltip">{platform.name}</svelte:fragment>
459+
</Tooltip>
460+
</li>
461461
{/each}
462462
</ul>
463463
<a href="/docs/sdks" class="aw-button is-secondary" style:align-self="start">

src/routes/docs/+page.svelte

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,9 @@
268268
Learn how to build like a team of hundreds
269269
</h1>
270270
<p class="aw-description u-max-width-600">
271-
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.
271+
Appwrite is a backend development platform built by hundreds of open-source developers,
272+
where you can build any application at any scale using the coding languages and tools you
273+
want.
272274
</p>
273275
</section>
274276
<section class="aw-hero is-align-start">
@@ -312,6 +314,7 @@
312314
</header>
313315
<p
314316
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
317+
style="word-break: keep-all;"
315318
>
316319
Learn Appwrite Auth, Databases, and more with React.
317320
</p>
@@ -338,9 +341,10 @@
338341
</header>
339342
<p
340343
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
344+
style="word-break: keep-all;"
341345
>
342-
Learn Appwrite Auth, Databases, and more with SvelteKit.
343-
</p>
346+
Learn Appwrite Auth, Databases, and more with SvelteKit.
347+
</p>
344348
</article>
345349
</a>
346350
</li>
@@ -364,8 +368,9 @@
364368
</header>
365369
<p
366370
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
371+
style="word-break: keep-all;"
367372
>
368-
Learn Appwrite Auth, Databases, and more with Vue.
373+
Learn Appwrite Auth, Databases, and more with Vue.
369374
</p>
370375
</article>
371376
</a>
@@ -390,9 +395,10 @@
390395
</header>
391396
<p
392397
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
398+
style="word-break: keep-all;"
393399
>
394-
Coming soon...
395-
</p>
400+
Coming soon...
401+
</p>
396402
</article>
397403
</a>
398404
</li>
@@ -416,9 +422,10 @@
416422
</header>
417423
<p
418424
class="aw-articles-item-paragraph aw-sub-body-500 u-trim-2 u-margin-block-start-4"
425+
style="word-break: keep-all;"
419426
>
420-
Coming soon...
421-
</p>
427+
Coming soon...
428+
</p>
422429
</article>
423430
</a>
424431
</li>

src/scss/6-elements/_select.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
--p-select-menu-box-shadow-color: var(--transparent);
101101
}
102102
@mixin dark-mode() {
103-
--p-select-menu-bg-color: var(--aw-color-white) / 0.08;
103+
--p-select-menu-bg-color: var(--aw-color-greyscale-800);
104104
--p-select-menu-border-color: var(--aw-color-white) / 0.10;
105105
--p-select-menu-box-shadow-color: var(--transparent);
106106
}

0 commit comments

Comments
 (0)