Skip to content

Commit

Permalink
ST-10986 fix remove money input margin
Browse files Browse the repository at this point in the history
  • Loading branch information
Ima-Acikima committed Jan 15, 2024
1 parent b4ade1b commit a96a86c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@supplycart/ui",
"version": "1.14.42",
"version": "1.14.43",
"repository": {
"type": "git",
"url": "https://github.com/supplycart/ui"
Expand Down
4 changes: 2 additions & 2 deletions src/currency/components/MoneyInputV2Base.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default {
attrs: {
type: "text",
class:
"border border-gray-300 rounded p-2 text-right mb-2" +
"border border-gray-300 rounded p-2 text-right" +
(vm.editing ? " hidden" : ""),
pattern: "[0-9.!a-zA-Z0]",
disabled: vm.disabled,
Expand All @@ -137,7 +137,7 @@ export default {
attrs: {
type: "text",
class:
"border border-red-300 rounded p-2 text-right mb-2" +
"border border-red-300 rounded p-2 text-right" +
(!vm.editing ? " hidden" : ""),
pattern: "[0-9.!a-zA-Z0]",
placeholder: vm.placeholder,
Expand Down

0 comments on commit a96a86c

Please sign in to comment.