diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2021-04-13 12:49:14 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2021-04-13 12:49:14 -0500 |
| commit | 65d0dbb9b3388e03c312c1dd456feeef740289e0 (patch) | |
| tree | 9916793d0b760eb62b4102ca151c4802ea6e44ee /src/components/EditorLists.vue | |
| parent | 6a152d5cf5f35bc58fc4b659fe6edcb6f94f760c (diff) | |
Start styling and add initial dark mode support
Diffstat (limited to 'src/components/EditorLists.vue')
| -rw-r--r-- | src/components/EditorLists.vue | 5 |
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 { |
