Compare commits

..

9 Commits

Author SHA1 Message Date
Vikeo
559d828fed fix lint 2024-09-22 09:55:39 +02:00
Vikeo
8a54b168c9 fix lint 2024-09-22 09:51:56 +02:00
Vikeo
b118fce4a9 Merge remote-tracking branch 'origin/main' into monarch 2024-09-22 09:47:54 +02:00
Vikeo
a9f99ab5a1 last cleanup 2024-09-22 09:45:43 +02:00
Vikeo
0cf7761e6b use monarch button 2024-09-22 09:27:48 +02:00
Vikeo
0ad5dfadb6 monarch button 2024-09-22 09:27:15 +02:00
Vikeo
7021646790 cleanup 2024-09-22 09:25:57 +02:00
Vikeo
6c6964dc22 Merge branch 'main' into monarch 2024-08-31 20:15:06 +02:00
Vikeo
b8ac0b9250 wip 2024-08-31 20:05:13 +02:00
4 changed files with 3662 additions and 3758 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "life-trinket",
"private": true,
"version": "1.0.1",
"version": "0.9.99",
"type": "commonjs",
"engines": {
"node": ">=20",
@@ -17,39 +17,39 @@
"deploy": "bun run build && firebase deploy --only hosting"
},
"dependencies": {
"firebase": "^10.14.1",
"firebase": "^10.3.0",
"ga-4-react": "^0.1.281",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-screen-wake-lock": "^3.0.2",
"react-swipeable": "^7.0.2",
"react-twc": "^1.4.2",
"semver": "^7.7.1",
"zod": "^3.24.2"
"react-swipeable": "^7.0.1",
"react-twc": "^1.3.0",
"semver": "^7.6.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@savvywombat/tailwindcss-grid-areas": "^4.0.0",
"@svgr/cli": "^8.1.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.19",
"firebase-tools": "^13.31.2",
"eslint-plugin-react-refresh": "^0.4.6",
"firebase-tools": "^13.7.5",
"install": "^0.13.0",
"postcss": "^8.5.3",
"postcss": "^8.4.38",
"prettier": "2.8.8",
"prop-types": "^15.8.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"vite-plugin-pwa": "^0.20.5"
"tailwindcss": "^3.4.3",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vite-plugin-pwa": "^0.20.0"
}
}

7369
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -30,7 +30,7 @@ const CommanderDamageButton = twc.button<RotationButtonProps>((props) => [
]);
const CommanderDamageTextContainer = twc.div<RotationDivProps>((props) => [
'relative -translate-y-1/2 top-1/2 left-1/2 tabular-nums pointer-events-none select-none webkit-user-select-none',
'relative top-1/2 left-1/2 tabular-nums pointer-events-none select-none webkit-user-select-none',
props.$rotation === Rotation.SideFlipped || props.$rotation === Rotation.Side
? 'rotate-[270deg]'
: '',

View File

@@ -2,4 +2,5 @@ import { twc } from 'react-twc';
export const Paragraph = twc.p`text-text-primary`;
// eslint-disable-next-line react-refresh/only-export-components
export const H1 = twc.h1`text-text-primary;`;