Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: feedback button logic and small issues #129

Merged
merged 5 commits into from
Oct 3, 2023
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
1 change: 1 addition & 0 deletions src/lib/components/Feedback.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@

function reset() {
comment = email = '';
feedbackType = '';
submitted = false;
error = undefined;
}
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/ThemeSelect.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
});
</script>

<button class="aw-select is-colored" use:melt={$trigger}>
<button class="aw-select is-colored" use:melt={$trigger} aria-label="Select theme">
<div class="physical-select">
{#if $selected?.value}
<span class={iconMap[$selected.value]} aria-hidden="true" />
Expand Down
4 changes: 2 additions & 2 deletions src/lib/layouts/Docs.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
>
<section class="aw-mobile-header is-transparent">
<div class="aw-mobile-header-start">
<a href="/">
<a href="/" aria-label="homepage">
<img
class="aw-logo u-only-dark"
src="/images/logos/appwrite.svg"
Expand Down Expand Up @@ -125,7 +125,7 @@
<div class="aw-main-header-wrapper">
<div class="aw-main-header-row">
<div class="aw-main-header-start u-stretch">
<a href="/">
<a href="/" aria-label="homepage">
<img
class="aw-logo u-only-dark"
src="/images/logos/appwrite.svg"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/layouts/Sidebar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<div class="aw-side-nav-scroll">
{#if parent}
<section class="aw-side-nav-wrapper-parent">
<a href={parent.href}>
<a href={parent.href} aria-label="go back">
<span class="icon-cheveron-left" aria-hidden="true" />
</a>
<span class="aw-side-nav-wrapper-parent-title aw-eyebrow">{parent.label}</span>
Expand Down
2 changes: 1 addition & 1 deletion src/markdoc/layouts/Category.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<div class="aw-container">
<a class="aw-link aw-u-color-text-secondary" href="/blog">
<span class="aw-icon-chevron-left" aria-hidden="true" />
<span class="">Back to blog</span>
<span>Back to blog</span>
</a>
<div class="aw-category-header u-margin-block-start-24">
<div class="aw-category-header-content">
Expand Down
6 changes: 3 additions & 3 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@
<li class="aw-info-boxes-item">
<img src="/images/icons/gradients/star.svg" width="40" height="40" alt="" />
<h3 class="aw-info-boxes-title">
<span class="">GDPR</span>
<span>GDPR</span>
<span class="aw-inline-tag is-pink">Coming Soon</span>
</h3>
<p class="aw-info-boxes-content">
Expand All @@ -305,7 +305,7 @@
<li class="aw-info-boxes-item">
<img src="/images/icons/gradients/soc-2.svg" width="40" height="40" alt="" />
<h3 class="aw-info-boxes-title">
<span class="">SOC-2</span>
<span>SOC-2</span>
<span class="aw-inline-tag is-pink">Coming Soon</span>
</h3>
<p class="aw-info-boxes-content">
Expand All @@ -315,7 +315,7 @@
<li class="aw-info-boxes-item">
<img src="/images/icons/gradients/hipaa.svg" width="40" height="40" alt="" />
<h3 class="aw-info-boxes-title">
<span class="">HIPAA</span>
<span>HIPAA</span>
<span class="aw-inline-tag is-pink">Coming Soon</span>
</h3>
<p class="aw-info-boxes-content">Protect sensitive user health data.</p>
Expand Down
Loading