diff --git a/.gitignore b/.gitignore index 19d08a5..5b1cffb 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ node_modules public/main.js lib/nostr-relay-inspector dist +yarn-error.log diff --git a/package.json b/package.json index 7d23e04..0565ade 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,8 @@ }, "dependencies": { "@2alheure/vue-safe-mail": "1.0.3", + "@headlessui/vue": "1.7.7", + "@heroicons/vue": "2.0.13", "@vue-leaflet/vue-leaflet": "0.6.1", "@vueuse/core": "9.9.0", "alby": "1.0.1", @@ -53,6 +55,7 @@ "@babel/core": "^7.12.16", "@babel/eslint-parser": "^7.12.16", "@babel/plugin-syntax-top-level-await": "7.14.5", + "@tailwindcss/forms": "0.5.3", "@vue/cli-plugin-babel": "~5.0.0", "@vue/cli-plugin-eslint": "~5.0.0", "@vue/cli-service": "~5.0.0", diff --git a/postcss.config.js b/postcss.config.js index 7ac7ac2..413ff0b 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,7 +1,6 @@ -const tailwindcss = require('tailwindcss'); -module.exports = { - plugins: [ - 'postcss-preset-env', - tailwindcss - ], -}; \ No newline at end of file +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + } +} \ No newline at end of file diff --git a/src/components/NavComponent.vue b/src/components/NavComponent.vue index 292b5f9..18fb100 100644 --- a/src/components/NavComponent.vue +++ b/src/components/NavComponent.vue @@ -42,11 +42,15 @@ nav.menu a:hover { } +