fix tax rounding errors and styling issues

This commit is contained in:
Mohit Panjwani
2021-01-22 13:44:59 +05:30
parent 678ace744a
commit 83de1c47ee
6 changed files with 67 additions and 44 deletions

View File

@ -19,7 +19,9 @@ Vue.directive('click-outside', {
Vue.directive('autoresize', {
inserted: function (el) {
el.style.height = el.scrollHeight + 'px'
el.style.overflow.y = 'hidden'
if (el.style.overflow && el.style.overflow.y) {
el.style.overflow.y = 'hidden'
}
el.style.resize = 'none'
function OnInput() {
this.style.height = 'auto'