fix(ui): avoid overlapping guild action buttons
This commit is contained in:
@@ -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).
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user