Merge pull request #1229 from pikasTech/fix/1224-mobile-workbench-composer
fix: keep mobile workbench composer visible
This commit is contained in:
@@ -1919,27 +1919,77 @@
|
|||||||
|
|
||||||
@media (max-width: 720px) {
|
@media (max-width: 720px) {
|
||||||
.platform-shell {
|
.platform-shell {
|
||||||
grid-template-columns: 1fr;
|
height: 100dvh;
|
||||||
height: auto;
|
min-height: 100dvh;
|
||||||
overflow: auto;
|
grid-template-columns: minmax(0, 1fr);
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.platform-sidebar {
|
.platform-sidebar {
|
||||||
position: static;
|
display: none;
|
||||||
height: auto;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-groups {
|
.platform-main {
|
||||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
height: 100dvh;
|
||||||
|
min-height: 0;
|
||||||
|
grid-template-rows: 58px minmax(0, 1fr);
|
||||||
}
|
}
|
||||||
|
|
||||||
.platform-content {
|
.platform-content {
|
||||||
padding: 14px;
|
min-height: 0;
|
||||||
overflow: visible;
|
padding: 12px;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.platform-topbar {
|
.platform-topbar {
|
||||||
padding: 0 12px;
|
min-width: 0;
|
||||||
|
gap: 8px;
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar-status {
|
||||||
|
gap: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.topbar-status strong {
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workbench-route,
|
||||||
|
.workbench-grid,
|
||||||
|
.workbench-center {
|
||||||
|
height: 100%;
|
||||||
|
min-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workbench-grid {
|
||||||
|
grid-template-columns: minmax(0, 1fr);
|
||||||
|
grid-template-rows: minmax(0, 1fr);
|
||||||
|
}
|
||||||
|
|
||||||
|
.session-rail,
|
||||||
|
.hwpod-panel {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.command-composer {
|
||||||
|
gap: 8px;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.composer-toolbar {
|
||||||
|
gap: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.composer-field {
|
||||||
|
min-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.command-composer textarea {
|
||||||
|
min-height: 72px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.system-filter-bar,
|
.system-filter-bar,
|
||||||
|
|||||||
Reference in New Issue
Block a user