chore: update css files

This commit is contained in:
retoor 2026-01-03 13:52:36 +01:00
parent 1bc7bbe81e
commit 38f027a9fb
3 changed files with 21 additions and 8 deletions

View File

@ -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 ## 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. 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.

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "Snek" name = "Snek"
version = "1.14.0" version = "1.15.0"
readme = "README.md" readme = "README.md"
#license = { file = "LICENSE", content-type="text/markdown" } #license = { file = "LICENSE", content-type="text/markdown" }
description = "Snek Chat Application by Molodetz" description = "Snek Chat Application by Molodetz"

View File

@ -1,23 +1,28 @@
.fug-root { .fug-root {
background: #181818; background: none;
color: white; color: white;
font-family: sans-serif; font-family: sans-serif;
/*min-height: 100vh;*/ max-width: 100%;
} }
.fug-grid { .fug-grid {
display: grid; display: flex;
grid-template-columns: repeat(6, 150px); flex-wrap: wrap;
gap: 20px; gap: 12px;
margin: 30px; margin: 10px;
max-width: 100%;
overflow-x: auto;
justify-content: flex-start;
} }
.fug-tile { .fug-tile {
width: 120px;
flex-shrink: 0;
background: #111; background: #111;
border: 2px solid #ff6600; border: 2px solid #ff6600;
border-radius: 12px; border-radius: 12px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
padding: 16px 8px 8px 8px; padding: 12px 8px 8px 8px;
box-shadow: 0 0 4px #333; box-shadow: 0 0 4px #333;
position: relative; position: relative;
} }