2 Commits

Author SHA1 Message Date
c3ddadeb17 1.9.3 2026-02-11 06:14:19 +01:00
36b0c18370 fix: improve desktop layout, scrolling and background 2026-02-11 06:14:19 +01:00
5 changed files with 15 additions and 7 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "vue-nonograms-solid", "name": "vue-nonograms-solid",
"version": "1.9.2", "version": "1.9.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "vue-nonograms-solid", "name": "vue-nonograms-solid",
"version": "1.9.2", "version": "1.9.3",
"dependencies": { "dependencies": {
"fireworks-js": "^2.10.8", "fireworks-js": "^2.10.8",
"flag-icons": "^7.5.0", "flag-icons": "^7.5.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "vue-nonograms-solid", "name": "vue-nonograms-solid",
"version": "1.9.2", "version": "1.9.3",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@@ -190,6 +190,7 @@ onUnmounted(() => {
gap: 20px; gap: 20px;
width: 100%; width: 100%;
padding-bottom: 50px; padding-bottom: 50px;
padding-top: 100px; /* Space for fixed NavBar */
} }
.install-banner { .install-banner {
@@ -204,6 +205,9 @@ onUnmounted(() => {
max-width: 600px; max-width: 600px;
margin: 0 auto 20px auto; /* Center it manually */ margin: 0 auto 20px auto; /* Center it manually */
box-shadow: var(--banner-shadow); box-shadow: var(--banner-shadow);
position: sticky;
left: 0;
right: 0;
} }
.install-text { .install-text {
@@ -239,6 +243,9 @@ onUnmounted(() => {
margin-right: auto; margin-right: auto;
max-width: 1200px; /* Keep constraint for panels */ max-width: 1200px; /* Keep constraint for panels */
width: 100%; width: 100%;
position: sticky;
left: 0;
right: 0;
} }
.board-section { .board-section {

View File

@@ -435,8 +435,10 @@ watch(isMobileMenuOpen, (val) => {
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
z-index: 100; z-index: 100;
position: sticky; position: fixed;
top: 0; top: 0;
left: 0;
right: 0;
} }
.nav-left { .nav-left {

View File

@@ -130,7 +130,6 @@
} }
html { html {
overflow-x: hidden;
width: 100%; width: 100%;
} }
@@ -139,18 +138,18 @@ body {
padding: 20px; padding: 20px;
font-family: 'Segoe UI', 'Roboto', Helvetica, Arial, sans-serif; font-family: 'Segoe UI', 'Roboto', Helvetica, Arial, sans-serif;
background: var(--bg-gradient); background: var(--bg-gradient);
background-attachment: fixed;
background-size: cover;
color: var(--text-color); color: var(--text-color);
min-height: 100vh; min-height: 100vh;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
overflow-x: hidden;
} }
/* Ensure no other content is visible */ /* Ensure no other content is visible */
#app { #app {
width: 100%; width: 100%;
max-width: 100vw;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;