diff --git a/netlify.toml b/netlify.toml index d4796aaa75..3b2160e10b 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,3 +1,12 @@ +# block some countries +[[redirects]] + from = "/*" + to = "/451.html" + status = 451 + force = true + conditions = {Country=["BY","CU","IR","IQ","CI","LR","KP","SD","SY","ZW"]} + headers = {Link = ""} + # support SPA setup [[redirects]] from = "/*" diff --git a/public/451.html b/public/451.html new file mode 100644 index 0000000000..19918c3ecf --- /dev/null +++ b/public/451.html @@ -0,0 +1,10 @@ + + + + + Unavailable For Legal Reasons + + +

Unavailable For Legal Reasons

+ + diff --git a/src/components/TransactionDetails/index.js b/src/components/TransactionDetails/index.js index 396b3958b3..6fbbad4fd4 100644 --- a/src/components/TransactionDetails/index.js +++ b/src/components/TransactionDetails/index.js @@ -169,6 +169,7 @@ const Input = styled.input` background: ${({ theme }) => theme.inputBackground}; flex-grow: 1; font-size: 12px; + min-width: 20px; outline: none; box-sizing: border-box;