mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:23:24 +00:00
improve loading, caption renderer, season/episode selector, source selector
This commit is contained in:
1
tooling/eslint/react.js
vendored
1
tooling/eslint/react.js
vendored
@@ -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",
|
||||
|
@@ -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",
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user