aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/currency-display.scss
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-10-10 00:25:23 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-10-13 02:09:05 +0800
commitea7926c211965e2e529e5795a4e1655e97e32144 (patch)
tree74a3efe1f046bd9e8aba74f5857fb2af0bde32e9 /ui/app/css/itcss/components/currency-display.scss
parentfbab0f3a1f1bf78fdaf6b5639fb6a23d996f3645 (diff)
downloadtangerine-wallet-browser-ea7926c211965e2e529e5795a4e1655e97e32144.tar.gz
tangerine-wallet-browser-ea7926c211965e2e529e5795a4e1655e97e32144.tar.zst
tangerine-wallet-browser-ea7926c211965e2e529e5795a4e1655e97e32144.zip
Adds amount and gas field to sendV2.
Diffstat (limited to 'ui/app/css/itcss/components/currency-display.scss')
-rw-r--r--ui/app/css/itcss/components/currency-display.scss50
1 files changed, 50 insertions, 0 deletions
diff --git a/ui/app/css/itcss/components/currency-display.scss b/ui/app/css/itcss/components/currency-display.scss
new file mode 100644
index 000000000..b2776bb47
--- /dev/null
+++ b/ui/app/css/itcss/components/currency-display.scss
@@ -0,0 +1,50 @@
+.currency-display {
+ height: 54px;
+ width: 240px;
+ border: 1px solid $alto;
+ border-radius: 4px;
+ background-color: $white;
+ color: $dusty-gray;
+ font-family: Roboto;
+ font-size: 16px;
+ font-weight: 300;
+ padding: 8px 10px;
+ position: relative;
+
+ &__primary-row {
+ display: flex;
+ }
+
+ &__input-wrapper {
+ margin-top: -1px;
+ }
+
+ &__input {
+ color: $scorpion;
+ font-family: Roboto;
+ font-size: 16px;
+ line-height: 22px;
+ border: none;
+ outline: 0 !important;
+ }
+
+ &__primary-currency {
+ color: $scorpion;
+ font-weight: 400;
+ font-family: Roboto;
+ font-size: 16px;
+ line-height: 22px;
+ }
+
+ &__converted-row {
+ display: flex;
+ }
+
+ &__converted-value,
+ &__converted-currency {
+ color: $dusty-gray;
+ font-family: Roboto;
+ font-size: 12px;
+ line-height: 12px;
+ }
+} \ No newline at end of file