mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 02:36:00 +00:00
24 lines
399 B
Svelte
24 lines
399 B
Svelte
<script lang="ts">
|
|
import XmlHighlighter from '../elements/XmlHighlighter.svelte';
|
|
|
|
export let selection;
|
|
</script>
|
|
|
|
<div class="wrapper">
|
|
{#each selection as cell}
|
|
<XmlHighlighter code={cell.value} />
|
|
{/each}
|
|
</div>
|
|
|
|
<style>
|
|
.wrapper {
|
|
overflow: scroll;
|
|
position: absolute;
|
|
background: var(--token-base);
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
</style>
|