Co-authored-by: Jon Rohan <rohan@github.com>
This commit is contained in:
Cameron Dutro 2023-11-30 13:25:27 -08:00 коммит произвёл GitHub
Родитель df389a05d1
Коммит 9aa4ee7803
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -50,8 +50,8 @@ export default function autosize(textarea, {viewportMarginBottom = 100} = {}) {
const textareaStyle = getComputedStyle(textarea)
const topBorderWidth = Math.round(parseFloat(textareaStyle.borderTopWidth))
const bottomBorderWidth = Math.round(parseFloat(textareaStyle.borderBottomWidth))
const topBorderWidth = Math.ceil(parseFloat(textareaStyle.borderTopWidth))
const bottomBorderWidth = Math.ceil(parseFloat(textareaStyle.borderBottomWidth))
const isBorderBox = textareaStyle.boxSizing === 'border-box'
const borderAddOn = isBorderBox ? topBorderWidth + bottomBorderWidth : 0