diff --git a/CHANGELOG.md b/CHANGELOG.md index 38c1450..2441d41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,14 @@ + +## Version 1.15.0 - 2026-01-03 + +update css files + +**Changes:** 1 files, 19 lines +**Languages:** CSS (19 lines) + ## Version 1.14.0 - 2025-12-26 Users can now create, configure settings for, and delete channels through dedicated dialog interfaces. Developers access new RPC methods to support these channel management operations. diff --git a/pyproject.toml b/pyproject.toml index 4341af7..fecf7a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "Snek" -version = "1.14.0" +version = "1.15.0" readme = "README.md" #license = { file = "LICENSE", content-type="text/markdown" } description = "Snek Chat Application by Molodetz" diff --git a/src/snek/static/file-upload-grid.css b/src/snek/static/file-upload-grid.css index 1892c16..458e304 100644 --- a/src/snek/static/file-upload-grid.css +++ b/src/snek/static/file-upload-grid.css @@ -1,23 +1,28 @@ .fug-root { - background: #181818; + background: none; color: white; font-family: sans-serif; - /*min-height: 100vh;*/ + max-width: 100%; } .fug-grid { - display: grid; - grid-template-columns: repeat(6, 150px); - gap: 20px; - margin: 30px; + display: flex; + flex-wrap: wrap; + gap: 12px; + margin: 10px; + max-width: 100%; + overflow-x: auto; + justify-content: flex-start; } .fug-tile { + width: 120px; + flex-shrink: 0; background: #111; border: 2px solid #ff6600; border-radius: 12px; display: flex; flex-direction: column; align-items: center; - padding: 16px 8px 8px 8px; + padding: 12px 8px 8px 8px; box-shadow: 0 0 4px #333; position: relative; }