fix: TextAreaCopyable overflow issue with long text
Overflow fix for the TextAreaCopyable when text is too long.
This commit is contained in:
parent
9dca9c3cb8
commit
bc760eaae5
@ -39,7 +39,7 @@ const tooltipText = computed(() => isJustCopied.value ? 'Copied!' : copyMessage.
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div style="overflow-x: hidden; width: 100%">
|
||||
<div style="overflow-x: hidden; width: 100%; max-width: 80vw; margin: auto">
|
||||
<c-card relative>
|
||||
<n-scrollbar
|
||||
x-scrollable
|
||||
|
||||
Loading…
Reference in New Issue
Block a user