Skip to content

Commit

Permalink
chore: code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
raaymax committed Feb 15, 2024
1 parent c61f31d commit c62526d
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ui/src/core_components/CoreIFrame.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
</template>

<script lang="ts">
import { FieldCategory, FieldType } from "../streamsyncTypes";
import { cssClasses, secondaryTextColor } from "../renderer/sharedStyleFields";
import { getClick } from "../renderer/syntheticEvents";
import { FieldType } from "../streamsyncTypes";
import { cssClasses } from "../renderer/sharedStyleFields";
const description = "A component to embed an external resource in an iframe.";
Expand Down Expand Up @@ -48,7 +47,7 @@ export default {
</script>

<script setup lang="ts">
import { Ref, computed, inject, ref } from "vue";
import { Ref, inject, ref } from "vue";
import injectionKeys from "../injectionKeys";
const rootEl:Ref<HTMLElement> = ref(null);
Expand Down Expand Up @@ -89,10 +88,9 @@ function handleLoad(ev) {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0);
border-radius: 12px;
}
.CoreIFrame.selected .mask {
.CoreIFrame.beingEdited.selected .mask {
pointer-events: none;
}
</style>

0 comments on commit c62526d

Please sign in to comment.