improve loading, caption renderer, season/episode selector, source selector

This commit is contained in:
Jorrin
2024-02-19 22:12:08 +01:00
parent efab11bff5
commit 90c6c2093b
31 changed files with 1453 additions and 824 deletions

View File

@@ -4,6 +4,7 @@ const config = {
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"plugin:@tanstack/eslint-plugin-query/recommended",
],
rules: {
"react/prop-types": "off",

View File

@@ -1,4 +1,27 @@
import {
black,
blue,
gray,
green,
indigo,
pink,
purple,
red,
white,
yellow,
} from "tailwindcss/colors";
export default {
black: black,
white: white,
gray: gray,
red: red,
yellow: yellow,
green: green,
blue: blue,
indigo: indigo,
purple: purple,
pink: pink,
primary: {
100: "#C082FF",
300: "#8D44D6",

View File

@@ -1,9 +1,14 @@
import type { Config } from "tailwindcss";
import base from "./base";
import colors from "./colors";
export default {
content: base.content,
presets: [base],
theme: {},
theme: {
extend: {
colors,
},
},
} satisfies Config;