Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ body {


.tab_page {
height: auto;
height: 80vh;
/* max-height: 1200px; */
width: 100%;
background-color: var(--panel-background-color);
Expand All @@ -156,7 +156,6 @@ body {
filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.5));


height: 606px;
overflow-y: clip;
overflow-x: visible;
}
Expand Down Expand Up @@ -214,7 +213,7 @@ body {

.centre_panel {
width: 350px;
max-height: 600px;
max-height: 100%;

margin-top: var(--ui-margin);
margin-bottom: 0;
Expand Down Expand Up @@ -781,4 +780,4 @@ img {
font-size: var(--font-size-bigger);
/*mouse passthrough*/
pointer-events: none;
}
}
5 changes: 2 additions & 3 deletions js/Tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class Tab {
}

var left_panel = document.createElement("div");
left_panel.classList.add("left_panel");
left_panel.classList.add("left_panel", "scroll_container");
tab_page.appendChild(left_panel);

{
Expand Down Expand Up @@ -119,7 +119,6 @@ class Tab {
save_commands_div.appendChild(duplicate_sfx_button);

var file_list = document.createElement("div");
file_list.classList.add("scroll_container");
file_list.classList.add("filelist");
file_list.id = this.name + "_file_list";
left_panel.appendChild(file_list);
Expand Down Expand Up @@ -157,7 +156,7 @@ class Tab {
}

var right_panel = document.createElement("div");
right_panel.classList.add("right_panel");
right_panel.classList.add("right_panel", "scroll_container");
tab_page.appendChild(right_panel);

{
Expand Down