Lobby improvement in many ways

- using button instead of div
- shield styled with tailwindcss
- implement Head for initial-scale
- Player component with reworked edit button
This commit is contained in:
aronmal 2023-02-08 14:17:03 +01:00
parent 2e0966aa49
commit 41d5f2d138
Signed by: aronmal
GPG key ID: 816B7707426FC612
3 changed files with 54 additions and 13 deletions

View file

@ -1,10 +1,20 @@
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors")
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
colors: {
...colors,
theme: "#282c34",
grayish: "#b1b2b5cc",
warn: "#fabd04",
"shield-gray": "#616161",
"shield-lightgray": "#989898",
},
extend: {},
},
plugins: [],