Skip to content

Commit

Permalink
remove iframe border
Browse files Browse the repository at this point in the history
  • Loading branch information
imvenx committed Dec 8, 2023
1 parent 0cc3619 commit b5926fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ViewsComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
:width="view.width * appState.zoom * view.scale" :height="view.height * appState.zoom * view.scale"
style="box-shadow: 0 0 10px black;">
<foreignObject :width="view.width" :height="view.height">
<iframe :src="appState.url" :width="view.width" :height="view.height" />
<iframe style="border: none;" :src="appState.url" :width="view.width" :height="view.height" />
</foreignObject>
</svg>
<q-slider :min="0.1" :max="2" :step="0.1" v-model="view.scale" />
Expand Down

0 comments on commit b5926fb

Please sign in to comment.