Update src/index.js
Co-authored-by: Jon Rohan <rohan@github.com>
This commit is contained in:
Родитель
df389a05d1
Коммит
9aa4ee7803
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче