Added ui with vote view interface

This commit is contained in:
Manuel Forcén Muñoz 2025-01-14 19:28:48 +01:00
parent 496b51646e
commit bce6857b12
30 changed files with 6692 additions and 0 deletions

12
ui/tailwind.config.js Normal file
View file

@ -0,0 +1,12 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}"
],
theme: {
extend: {},
},
plugins: [],
}