diff options
| -rw-r--r-- | tools/timeline_editor/index.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/timeline_editor/index.html b/tools/timeline_editor/index.html index 5ab8ed0..e85a31c 100644 --- a/tools/timeline_editor/index.html +++ b/tools/timeline_editor/index.html @@ -106,6 +106,13 @@ position: relative; height: calc(100vh - 280px); min-height: 500px; + /* Hide scrollbars while keeping scroll functionality */ + scrollbar-width: none; /* Firefox */ + -ms-overflow-style: none; /* IE/Edge */ + } + + .timeline-container::-webkit-scrollbar { + display: none; /* Chrome/Safari/Opera */ } .timeline { |
