forked from profectus/Profectus
Fix tree branches not appearing in the correct positions
This commit is contained in:
parent
8e6fc852d7
commit
d4c1e16fb4
1 changed files with 11 additions and 2 deletions
|
@ -61,8 +61,7 @@ const validLinks = computed(() => {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.resize-listener,
|
.resize-listener {
|
||||||
svg {
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
left: 5px;
|
left: 5px;
|
||||||
|
@ -71,4 +70,14 @@ svg {
|
||||||
z-index: -10;
|
z-index: -10;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
svg {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
z-index: -10;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue