chore: update css files
This commit is contained in:
parent
d5bff8b855
commit
8f803b86d9
@ -19,6 +19,14 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Version 1.20.0 - 2026-01-03
|
||||||
|
|
||||||
|
update css files
|
||||||
|
|
||||||
|
**Changes:** 2 files, 25 lines
|
||||||
|
**Languages:** CSS (25 lines)
|
||||||
|
|
||||||
## Version 1.19.0 - 2026-01-03
|
## Version 1.19.0 - 2026-01-03
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "Snek"
|
name = "Snek"
|
||||||
version = "1.19.0"
|
version = "1.20.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"
|
||||||
|
|||||||
@ -498,14 +498,17 @@ a {
|
|||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex !important;
|
||||||
flex-direction: row;
|
flex-direction: row !important;
|
||||||
align-items: center;
|
flex-wrap: nowrap !important;
|
||||||
|
align-items: center !important;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
padding: 10px 12px;
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
min-width: 0;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -518,6 +521,11 @@ a {
|
|||||||
nav {
|
nav {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nav-menu,
|
||||||
|
channel-menu {
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@ -36,18 +36,17 @@ channel-menu[open] .channel-menu-toggle {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.channel-menu-panel {
|
.channel-menu-panel {
|
||||||
position: absolute;
|
position: fixed;
|
||||||
top: 100%;
|
top: 50px;
|
||||||
right: 0;
|
right: 8px;
|
||||||
margin-top: 8px;
|
left: 8px;
|
||||||
background-color: #111;
|
background-color: #111;
|
||||||
border: 1px solid #333;
|
border: 1px solid #333;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 8px 0;
|
padding: 8px 0;
|
||||||
display: none;
|
display: none;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-width: 200px;
|
max-height: calc(100vh - 70px);
|
||||||
max-height: 60vh;
|
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user