feat: initial romm web ui architecture, bento grids, and spatial gamepad bindings
This commit is contained in:
27
tailwind.config.ts
Normal file
27
tailwind.config.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { Config } from "tailwindcss";
|
||||
import { heroui } from "@heroui/theme";
|
||||
|
||||
const config: Config = {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
"./node_modules/@heroui/theme/dist/**/*.{js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
animation: {
|
||||
"background-position-spin": "background-position-spin 3000ms infinite alternate",
|
||||
},
|
||||
keyframes: {
|
||||
"background-position-spin": {
|
||||
"0%": { backgroundPosition: "top center" },
|
||||
"100%": { backgroundPosition: "bottom center" },
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
darkMode: "class",
|
||||
plugins: [heroui()],
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user