From 5bda9207fee9d73f0ac7f486ce0c3be93fa2bd94 Mon Sep 17 00:00:00 2001 From: fiskhandlarn Date: Tue, 5 Dec 2023 12:03:18 +0100 Subject: [PATCH 1/2] fix: set explicit width --- resources/styles/components/_github-button.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/styles/components/_github-button.scss b/resources/styles/components/_github-button.scss index 4525572..6dc3547 100644 --- a/resources/styles/components/_github-button.scss +++ b/resources/styles/components/_github-button.scss @@ -10,6 +10,7 @@ height: auto; max-height: 100%; max-width: 100%; + width: 100%; } &:hover, From dd410bca38ef149d8cc51032470421b9fb3f0c94 Mon Sep 17 00:00:00 2001 From: fiskhandlarn Date: Tue, 5 Dec 2023 12:03:58 +0100 Subject: [PATCH 2/2] chore: bump version --- package.json | 2 +- public/index.html | 4 ++-- vite.config.js | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 547d907..0a853c5 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "birkan", - "version": "0.1", + "version": "0.2", "description": "Bacon or beercan or Birkan‽", "license": "AGPL-3.0-or-later", "author": { diff --git a/public/index.html b/public/index.html index a62f48f..cb35f94 100644 --- a/public/index.html +++ b/public/index.html @@ -8,7 +8,7 @@ - + @@ -65,6 +65,6 @@

Bacon or beercan or Birkan‽

- + diff --git a/vite.config.js b/vite.config.js index db8d4bd..3ab0450 100644 --- a/vite.config.js +++ b/vite.config.js @@ -15,11 +15,11 @@ export default ({ command }) => ({ 'resources/styles/app.scss', ], output: { - entryFileNames: `[name]_0.1.js`, - chunkFileNames: `[name]_0.1.js`, + entryFileNames: `[name]_0.2.js`, + chunkFileNames: `[name]_0.2.js`, assetFileNames: (assetInfo) => { if (assetInfo.name == 'app.css') { - return 'app_0.1.css'; + return 'app_0.2.css'; } return assetInfo.name; },