Fixed out-of-screen tooltips

This commit is contained in:
2023-11-09 09:15:08 +01:00
parent a8f8c6d5f5
commit 3ff828c8cd
4 changed files with 5 additions and 5 deletions

View File

@@ -55,10 +55,10 @@ import {html} from '@codemirror/lang-html'
</script>
<template>
<div class="editor w-full max-w-full h-full overflow-scroll">
<div class="editor w-full h-full bg-[#282C34] rounded-2xl overflow-x-scroll">
<codemirror
style="height: 100%; width: 100%; padding:1rem ; border-radius: 1rem; font-size: large;"
style="height: 100%; width: fit-content; padding:1rem ; border-radius: 1rem; font-size: large;"
:model-value="code"
@update:model-value="dataUpdated"
:extensions="extensions"