mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
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
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ const tooltipText = computed(() => isJustCopied.value ? 'Copied!' : copyMessage.
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div style="overflow-x: hidden; width: 100%">
|
<div style="overflow-x: hidden; width: 100%; max-width: 80vw; margin: auto">
|
||||||
<c-card relative>
|
<c-card relative>
|
||||||
<n-scrollbar
|
<n-scrollbar
|
||||||
x-scrollable
|
x-scrollable
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue