mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-13 17:46:53 -04:00
set UI breakpoint to 1024 to ensure smooth UX for tablet users. Update the existing UI tests
This commit is contained in:
parent
047750fda4
commit
965659311e
10 changed files with 42 additions and 35 deletions
|
@ -292,7 +292,7 @@ class StatusBarPanel {
|
|||
|
||||
this.dom.querySelectorAll(".cm-status-bar-select-scroll").forEach(
|
||||
el => {
|
||||
el.style.maxHeight = window.innerWidth >= 768 ? (viewHeight - 50) + "px" : "250px";
|
||||
el.style.maxHeight = window.innerWidth >= 1024 ? (viewHeight - 50) + "px" : "250px";
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue