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
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]
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"

View File

@ -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;
}