diff --git a/web/cashtab/src/components/Common/WalletLabel.js b/web/cashtab/src/components/Common/WalletLabel.js --- a/web/cashtab/src/components/Common/WalletLabel.js +++ b/web/cashtab/src/components/Common/WalletLabel.js @@ -7,6 +7,9 @@ display: inline-block; color: #ff8d00; margin-bottom: 0px; + @media (max-width: 400px) { + font-size: 16px; + } `; const WalletLabel = ({ name }) => { diff --git a/web/cashtab/src/components/Configure/Configure.js b/web/cashtab/src/components/Configure/Configure.js --- a/web/cashtab/src/components/Configure/Configure.js +++ b/web/cashtab/src/components/Configure/Configure.js @@ -52,6 +52,7 @@ justify-content: space-between; word-wrap: break-word; hyphens: auto; + @media (max-width: 500px) { width: 100%; justify-content: center; @@ -63,6 +64,9 @@ color: #444; margin: 0; text-align: left; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } `; @@ -116,6 +120,9 @@ margin: 0; text-align: left; font-weight: bold; + @media (max-width: 500px) { + font-size: 14px; + } } h4 { font-size: 16px;