aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/AudioWaveform.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-03-26 13:22:13 -0400
committerbobzel <zzzman@gmail.com>2021-03-26 13:22:13 -0400
commit36028677c61be7ab5937e864e881fa91a3b82d8c (patch)
tree63e51ff8283cf269d491bd277b8d403a3ff59474 /src/client/views/AudioWaveform.scss
parent7878bc22a6dec8bff17f38aa3ffad897babb9e16 (diff)
extracted AudioWaveform out of AudioBox in order to use in CollectionStackedTimelineView to share between audioBox and videoBox.
Diffstat (limited to 'src/client/views/AudioWaveform.scss')
-rw-r--r--src/client/views/AudioWaveform.scss17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/client/views/AudioWaveform.scss b/src/client/views/AudioWaveform.scss
new file mode 100644
index 000000000..e20434a25
--- /dev/null
+++ b/src/client/views/AudioWaveform.scss
@@ -0,0 +1,17 @@
+.audioWaveform {
+ position: relative;
+ width: 100%;
+ height: 100%;
+ overflow: hidden;
+ z-index: -1000;
+ bottom: 0;
+ pointer-events: none;
+ div {
+ height: 100% !important;
+ width: 100% !important;
+ }
+ canvas {
+ height: 100% !important;
+ width: 100% !important;
+ }
+}