diff --git a/src/components/lab-notebook/DoubleColumn.vue b/src/components/lab-notebook/DoubleColumn.vue
index 4f22574..49885e4 100644
--- a/src/components/lab-notebook/DoubleColumn.vue
+++ b/src/components/lab-notebook/DoubleColumn.vue
@@ -13,8 +13,9 @@ onMounted(() => {
}
})
+const maxWidth = scrollWindow.value ? (scrollWindow.value?.scrollWidth - scrollWindow.value?.clientWidth) : 0
+
const onScroll = () => {
- const maxWidth = scrollWindow.value ? (scrollWindow.value?.scrollWidth - scrollWindow.value?.clientWidth) : 0
if (scrollWindow.value?.scrollLeft == 0) scrollPos.value = 0
if (scrollWindow.value?.scrollLeft == maxWidth) scrollPos.value = maxWidth
}
@@ -59,8 +60,8 @@ const onScroll = () => {
>
diff --git a/src/components/lab-notebook/TripleColumn.vue b/src/components/lab-notebook/TripleColumn.vue
new file mode 100644
index 0000000..1a901d2
--- /dev/null
+++ b/src/components/lab-notebook/TripleColumn.vue
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
+
+
+