From 9aba5feb5ee999d580ce72e7426c55d52f7842fa Mon Sep 17 00:00:00 2001 From: tglide <26071571+TGlide@users.noreply.github.com> Date: Tue, 10 Oct 2023 11:03:12 +0100 Subject: [PATCH 1/5] remove scrollbar from carousel --- src/lib/components/Carousel.svelte | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/components/Carousel.svelte b/src/lib/components/Carousel.svelte index ae4d4be13f..2ed3bc5580 100644 --- a/src/lib/components/Carousel.svelte +++ b/src/lib/components/Carousel.svelte @@ -120,6 +120,11 @@ scroll-snap-type: x proximity; scrollbar-width: none; + -ms-overflow-style: none; + + &::-webkit-scrollbar { + display: none; + } } .carousel :global(li) { From a6c87a03bd3a7da1e50dccb10b1e54a010289ca9 Mon Sep 17 00:00:00 2001 From: tglide <26071571+TGlide@users.noreply.github.com> Date: Tue, 10 Oct 2023 11:15:31 +0100 Subject: [PATCH 2/5] fix card zoom chrome --- src/lib/components/Carousel.svelte | 8 +++++--- src/routes/community/+page.svelte | 2 +- src/routes/docs/+page.svelte | 2 +- src/routes/docs/CodeCard.svelte | 3 +++ src/scss/8-sequences/_grid-articles.scss | 26 +++++++++++++----------- 5 files changed, 24 insertions(+), 17 deletions(-) diff --git a/src/lib/components/Carousel.svelte b/src/lib/components/Carousel.svelte index 2ed3bc5580..fc18aa7521 100644 --- a/src/lib/components/Carousel.svelte +++ b/src/lib/components/Carousel.svelte @@ -1,7 +1,7 @@ + + -{#if open} -
-
-
-{/if} +
+
+
+ + diff --git a/src/lib/layouts/Docs.svelte b/src/lib/layouts/Docs.svelte index 02d72f7718..85ff638531 100644 --- a/src/lib/layouts/Docs.svelte +++ b/src/lib/layouts/Docs.svelte @@ -53,21 +53,8 @@ showSidenav: false })); }); - - function handleKeypress(event: KeyboardEvent) { - const cmdPressed = isMac() ? event.metaKey : event.ctrlKey; - if (cmdPressed && event.key.toLowerCase() === 'k') { - event.preventDefault(); - $layoutState.showSearch = true; - } else if (event.key.toLowerCase() === 'escape' || event.key.toLowerCase() === 'esc') { - event.preventDefault(); - $layoutState.showSearch = false; - } - } - -
Date: Tue, 10 Oct 2023 19:07:05 +0100 Subject: [PATCH 5/5] fix headlines --- src/markdoc/nodes/Heading.svelte | 114 +++++++++--------- src/markdoc/nodes/Paragraph.svelte | 19 ++- .../+page.markdoc | 10 +- src/scss/7-components/_article.scss | 2 +- 4 files changed, 79 insertions(+), 66 deletions(-) diff --git a/src/markdoc/nodes/Heading.svelte b/src/markdoc/nodes/Heading.svelte index 355e7bf510..a7f9e39858 100644 --- a/src/markdoc/nodes/Heading.svelte +++ b/src/markdoc/nodes/Heading.svelte @@ -1,68 +1,72 @@ {#if id} - - - - - + + + + + {:else} - - - + + + {/if} diff --git a/src/markdoc/nodes/Paragraph.svelte b/src/markdoc/nodes/Paragraph.svelte index 0baece6eab..d74e5adc5c 100644 --- a/src/markdoc/nodes/Paragraph.svelte +++ b/src/markdoc/nodes/Paragraph.svelte @@ -1,11 +1,20 @@ - {#if noParagraph} - + {:else} -

+

{/if} + + diff --git a/src/routes/blog/post/the-journey-and-meaning-behind-our-new-logo/+page.markdoc b/src/routes/blog/post/the-journey-and-meaning-behind-our-new-logo/+page.markdoc index f8a4b46798..e221e4f445 100644 --- a/src/routes/blog/post/the-journey-and-meaning-behind-our-new-logo/+page.markdoc +++ b/src/routes/blog/post/the-journey-and-meaning-behind-our-new-logo/+page.markdoc @@ -12,7 +12,7 @@ category: design In the fast-evolving world of technology and software development, change is not just inevitable; it's essential for growth and progress. One of Appwrite's recent transformations has been the evolution of our logo. Today, we'll take you on the creative journey that led to our new logo's design and meaning - a journey with our community at its core. -### How it started +# How it started Our first logo was initially designed by our CEO, Eldad. Its design aimed to align with our first slogan: 'Let's make coding fun again' - featuring rounded elements reminiscent of a gaming controller and the HTML symbol, which stood for our product's original focus. @@ -30,7 +30,7 @@ We realized it was time for a change, time for a logo that not only embodied the We transitioned from a playful approach to something a bit more serious, making Appwrite a platform that companies could rely on as they scaled. -### Our creative journey +# Our creative journey Crafting a new logo was no small task. It required meticulous planning, creativity, and a deep understanding of what Appwrite stood for. @@ -40,7 +40,7 @@ While we initially experimented with obvious hints related to the coding world ( ![Appwrite's new logo drafts](/images/blog/the-journey-and-meaning-behind-our-new-logo/drafts.png) -### Breakthrough moment +# Breakthrough moment After many reviews, we finally pinpointed the elements we actually aimed to capture. The aspects that make Appwrite unique: our global community and the essence of coding. @@ -51,7 +51,7 @@ With the design vectorized, it was time for final review rounds and tweaks. We f ![Appwrite's new logo transition from draft to vector](/images/blog/the-journey-and-meaning-behind-our-new-logo/break.png) -### Our new logo +# Our new logo The result of this creative journey is a logo that reflects the essence of Appwrite. It's not just a symbol; it's a representation of our commitment to building a global community united by a love for code. @@ -68,7 +68,7 @@ Finally, its overall look is reminiscent of the lowercase letter 'a,' standing f Our new logo inspired the rest of our visual identity. Our [website](https://appwrite.io/), promotional materials, and even [documentation](https://appwrite.io/docs) are now harmonized with this new identity, giving Appwrite a fresh, meaningful, and cohesive look. -### The road ahead +# The road ahead The evolution of our logo is not just a visual change; it's a reflection of our growth, our commitment to our community, and our dedication to empowering developers worldwide. diff --git a/src/scss/7-components/_article.scss b/src/scss/7-components/_article.scss index 3c8d112980..20c158c50b 100644 --- a/src/scss/7-components/_article.scss +++ b/src/scss/7-components/_article.scss @@ -18,7 +18,7 @@ &-spacing-logic .#{$p}{ &-sub-body-400 { margin-block:pxToRem(16); } &-sub-body-500 { margin-block-end:pxToRem(4); } - &-main-body-500 { margin-block-start:pxToRem(4); margin-block-end:pxToRem(4); } + &-main-body-500 { margin-block-end:pxToRem(8); } &-description { margin-block-start:pxToRem(4); margin-block-end:pxToRem(4); } &-label { margin-block-end:pxToRem(16); } &-paragraph-md { margin-block-end:pxToRem(32); }