aboutsummaryrefslogtreecommitdiff
path: root/src/components/EditorLists.vue
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-04-13 12:49:14 -0500
committerFurkan Sahin <furkan-dev@proton.me>2021-04-13 12:49:14 -0500
commit65d0dbb9b3388e03c312c1dd456feeef740289e0 (patch)
tree9916793d0b760eb62b4102ca151c4802ea6e44ee /src/components/EditorLists.vue
parent6a152d5cf5f35bc58fc4b659fe6edcb6f94f760c (diff)
Start styling and add initial dark mode support
Diffstat (limited to 'src/components/EditorLists.vue')
-rw-r--r--src/components/EditorLists.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/EditorLists.vue b/src/components/EditorLists.vue
index ae0aa22..26e0ecc 100644
--- a/src/components/EditorLists.vue
+++ b/src/components/EditorLists.vue
@@ -1,5 +1,5 @@
<template>
- <div id="editor">
+ <div id="editor-lists">
<div class="column">
<list :items="peerTeachers" @selection-changed="handlePtClick" #default="pt">
{{ pt.item.name }} <button @click.stop="deletePeerTeacher(pt.item.id)">X</button>
@@ -84,9 +84,10 @@ export default defineComponent({
</script>
<style>
-#editor {
+#editor-lists {
display: flex;
max-height: inherit;
+ min-height: 0;
}
.column {