diff --git a/content/price.json b/content/price.json index a788c17d7..5e76f8125 100644 --- a/content/price.json +++ b/content/price.json @@ -10,7 +10,7 @@ "titleIn": "You will receive", "titleOut": "You will earn" }, - "action": "Supply" + "action": "Approve & Supply" }, "remove": { "title": "Remove Liquidity", @@ -20,7 +20,7 @@ "titleIn": "You will spend", "titleOut": "You will receive" }, - "action": "Remove" + "action": "Approve & Remove" } } } diff --git a/src/components/atoms/Input/InputElement.module.css b/src/components/atoms/Input/InputElement.module.css index 8d98cb4bd..78898ceb6 100644 --- a/src/components/atoms/Input/InputElement.module.css +++ b/src/components/atoms/Input/InputElement.module.css @@ -11,7 +11,7 @@ margin: 0; border-radius: var(--border-radius); transition: 0.2s ease-out; - min-height: 43px; + height: 43px; min-width: 0; appearance: none; display: block; @@ -49,6 +49,11 @@ display: none; } +.textarea { + composes: input; + height: auto; +} + .select { composes: input; height: 43px; @@ -179,15 +184,16 @@ .prefix, .postfix { border: 1px solid var(--brand-grey-lighter); - min-height: 43px; + height: 43px; display: flex; align-items: center; padding-left: calc(var(--spacer) / 4); padding-right: calc(var(--spacer) / 4); - color: var(--color-secondary); + color: var(--brand-grey); font-size: var(--font-size-small); transition: border 0.2s ease-out; white-space: nowrap; + position: relative; } .prefix { diff --git a/src/components/atoms/Input/InputElement.tsx b/src/components/atoms/Input/InputElement.tsx index 3d1acba98..61abd511e 100644 --- a/src/components/atoms/Input/InputElement.tsx +++ b/src/components/atoms/Input/InputElement.tsx @@ -57,7 +57,12 @@ export default function InputElement({ ) case 'textarea': return ( -