fix: update version to 1.3.10 in package.json and package-lock.json; remove fixed canvas dimensions in RickGamePanel for responsive design

This commit is contained in:
Chipperfluff 2025-08-24 09:55:11 +02:00
parent 63fee69667
commit 1a65ee07af
3 changed files with 3 additions and 4 deletions

View File

@ -1,12 +1,12 @@
{
"name": "@funky-flask-test/funky-flask-test",
"version": "1.3.9",
"version": "1.3.10",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@funky-flask-test/funky-flask-test",
"version": "1.3.9",
"version": "1.3.10",
"devDependencies": {
"@types/node": "^24.0.15",
"typescript": "^5.8.3",

View File

@ -1,6 +1,6 @@
{
"name": "@funky-flask-test/funky-flask-test",
"version": "1.3.9",
"version": "1.3.10",
"type": "module",
"main": "./dist/index.jsx",
"exports": {

View File

@ -28,7 +28,6 @@ export class RickGamePanel {
private createUI() {
const panel = document.createElement('div')
panel.style.cssText = `width: 100%; max-width: 400px;`
this.canvas = document.createElement('canvas')
this.canvas.style.cssText = `width: 100%; border: 2px solid #333; background: #000; cursor: pointer;`
panel.appendChild(this.canvas)