fix: TextAreaCopyable overflow issue with long text

Overflow fix for the TextAreaCopyable when text is too long.
This commit is contained in:
Eduardo Maldonado 2024-04-12 01:46:36 -06:00
parent 9dca9c3cb8
commit bc760eaae5

View file

@ -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