Skip to content

Commit

Permalink
Phones can exec too
Browse files Browse the repository at this point in the history
  • Loading branch information
philrenaud committed Dec 8, 2023
1 parent cf539c4 commit 5f899b8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .changelog/19332.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
ui: make the exec window look nicer on mobile screens
```
21 changes: 21 additions & 0 deletions ui/app/styles/components/exec-window.scss
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,24 @@
}
}
}
// Media query for small screens
@media (max-width: 768px) {
.exec-window {
width: 100vw;
height: 100vh;
flex-direction: column;
position: static;
.task-group-tree {
flex: 0 0 auto;
min-height: 50px;
max-height: 300px;
overflow-y: auto;
width: 100%;
}
.terminal-container {
flex: 1 0 auto;
width: 100%;
height: auto;
}
}
}

0 comments on commit 5f899b8

Please sign in to comment.