Fix tree branches not appearing in the correct positions

This commit is contained in:
thepaperpilot 2022-04-27 08:07:37 -05:00
parent 8e6fc852d7
commit d4c1e16fb4

View file

@ -61,8 +61,7 @@ const validLinks = computed(() => {
</script>
<style scoped>
.resize-listener,
svg {
.resize-listener {
position: absolute;
top: 5px;
left: 5px;
@ -71,4 +70,14 @@ svg {
z-index: -10;
pointer-events: none;
}
svg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -10;
pointer-events: none;
}
</style>