Skip to content

Commit 3cc89ed

Browse files
committed
Add button aria
1 parent 8edf6e2 commit 3cc89ed

File tree

3 files changed

+5
-11
lines changed

3 files changed

+5
-11
lines changed

README.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
# Default starter for Gridsome
1+
# Gridsome Blog Starter
22
`
3-
### 1. Install Gridsome CLI tool if you don't have
3+
> A simple, hackable & minimalistic starter for Gridsome that uses Markdown for content.
44
5-
`npm install --global @gridsome/cli`
5+
### Features
66

7-
### 2. Create a Gridsome project
8-
9-
1. `gridsome create my-gridsome-site` to install default starter </li>
10-
2. `cd my-gridsome-site` to open folder
11-
3. `gridsome develop` to start local dev server at `http://localhost:8080`
12-
4. Happy coding 🎉🙌

src/components/PostMeta.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ export default {
1616
<style lang="scss">
1717
.post-meta {
1818
font-size: .8em;
19-
opacity: .7;
19+
opacity: .8;
2020
}
2121
</style>

src/components/ToggleTheme.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<button @click.prevent="toggleTheme" class="toggle-theme">
2+
<button role="button" aria-label="Toggle dark/light" @click.prevent="toggleTheme" class="toggle-theme">
33
<svg v-if="darkTheme" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-sun"><circle cx="12" cy="12" r="5"></circle><line x1="12" y1="1" x2="12" y2="3"></line><line x1="12" y1="21" x2="12" y2="23"></line><line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line><line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line><line x1="1" y1="12" x2="3" y2="12"></line><line x1="21" y1="12" x2="23" y2="12"></line><line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line><line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line></svg>
44
<svg v-else xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-moon"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path></svg>
55
</button>

0 commit comments

Comments
 (0)