userquin 0d571d6cc2
fix: accessibility (#57)
* fix accesibility issues:
- index.vue: input without label
- about.vue: color contrast doesn't have sufficient contrast ratio on code sample on light theme

* optimize png icons:
pwa-192x192.png: -31.04%
pwa-512x512.png: -14.66%

use https://ezgif.com/

* chore: color

Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
2021-02-12 13:00:32 +08:00
..
2021-01-22 18:32:27 +08:00
2021-02-12 12:55:19 +08:00
2021-02-11 23:17:40 +08:00
2021-02-12 13:00:32 +08:00

File-based Routing

Routes will auto-generated for Vue files in this dir with the same file structure. Check out vite-plugin-pages for more details.

Path Aliasing

~/ is aliased to ./src/ folder.

For example, instead of having

import { isDark } from '../../../../logics'

now you can use

import { isDark } from '~/logics'