fix(ui): avoid overlapping guild action buttons

This commit is contained in:
Peter Steinberger
2026-01-05 01:21:33 +01:00
parent 39e482414a
commit f6097bc6e3
2 changed files with 17 additions and 0 deletions

View File

@@ -11,6 +11,7 @@
- Docs: document built-in model shorthands + precedence (user config wins).
### Fixes
- Control UI: prevent overlapping action buttons in Discord guild rules on narrow layouts.
- Android: tapping the foreground service notification brings the app to the front. (#179) — thanks @Syhids
- Cron tool passes `id` to the gateway for update/remove/run/runs (keeps `jobId` input). (#180) — thanks @adamgall
- Control UI: chat view uses page scroll with sticky header/sidebar and fixed composer (no inner scroll frame).

View File

@@ -334,6 +334,7 @@
.list {
display: grid;
gap: 12px;
container-type: inline-size;
}
.list-item {
@@ -371,12 +372,27 @@
min-width: 220px;
}
.list-meta .btn {
padding: 6px 10px;
}
.list-meta .field input,
.list-meta .field textarea,
.list-meta .field select {
width: 100%;
}
@container (max-width: 560px) {
.list-item {
grid-template-columns: 1fr;
}
.list-meta {
min-width: 0;
text-align: left;
}
}
.chip-row {
display: flex;
flex-wrap: wrap;