aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css
diff options
context:
space:
mode:
authorChi Kei Chan <chikeichan@gmail.com>2017-09-14 16:32:24 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-14 16:32:24 +0800
commit4bcc62500f6f77131a21be823e3169b91d1dbf80 (patch)
treedc6b9407b2c259d0562f5d5e77135f5d16d55a9f /ui/app/css
parent93a1089e085cb70ddbd58721a140ab8d3b6b79eb (diff)
downloadtangerine-wallet-browser-4bcc62500f6f77131a21be823e3169b91d1dbf80.tar
tangerine-wallet-browser-4bcc62500f6f77131a21be823e3169b91d1dbf80.tar.gz
tangerine-wallet-browser-4bcc62500f6f77131a21be823e3169b91d1dbf80.tar.bz2
tangerine-wallet-browser-4bcc62500f6f77131a21be823e3169b91d1dbf80.tar.lz
tangerine-wallet-browser-4bcc62500f6f77131a21be823e3169b91d1dbf80.tar.xz
tangerine-wallet-browser-4bcc62500f6f77131a21be823e3169b91d1dbf80.tar.zst
tangerine-wallet-browser-4bcc62500f6f77131a21be823e3169b91d1dbf80.zip
Style send ether screen
Diffstat (limited to 'ui/app/css')
-rw-r--r--ui/app/css/itcss/components/send.scss92
1 files changed, 56 insertions, 36 deletions
diff --git a/ui/app/css/itcss/components/send.scss b/ui/app/css/itcss/components/send.scss
index 55eb90047..d4b77fae1 100644
--- a/ui/app/css/itcss/components/send.scss
+++ b/ui/app/css/itcss/components/send.scss
@@ -1,11 +1,7 @@
.send-screen-wrapper {
display: flex;
- flex-direction: column;
- min-width: 320px;
- min-height: 500px;
- z-index: $send-card-z-index;
- position: absolute;
- top: 5%;
+ flex-flow: column nowrap;
+ z-index: 25;
font-family: 'DIN OT';
@media screen and (max-width: $break-small) {
@@ -14,14 +10,15 @@
}
.send-screen-card {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- margin-left: 3.5%;
- margin-right: 3.5%;
- background: $white;
+ background-color: #fff;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
+ padding: 46px 40.5px 26px;
+ position: relative;
+ top: -26px;
+ align-items: center;
+ display: flex;
+ flex-flow: column nowrap;
+ width: 498px;
}
/* Send Screen */
@@ -36,17 +33,39 @@
}
.send-eth-icon {
- border-radius: 25px;
- width: 45px;
- height: 45px;
+ border-radius: 50%;
+ width: 70px;
+ height: 70px;
border: 1px solid $alto;
- box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
+ box-shadow: 0 0 4px 0 rgba(0, 0, 0, .2);
+ position: absolute;
+ top: -35px;
+ z-index: 25;
+ padding: 4px;
+ background-color: $white;
}
.send-screen-input-wrapper {
width: 95%;
position: relative;
+ .fa-bolt {
+ padding-right: 4px;
+ }
+
+ .large-input {
+ border: 1px solid $dusty-gray;
+ border-radius: 4px;
+ margin: 4px 0 20px;
+ font-size: 16px;
+ line-height: 22.4px;
+ font-family: "DIN OT";
+ }
+
+ .send-screen-gas-input {
+ border: 1px solid transparent;
+ }
+
&__error-message {
display: none;
}
@@ -240,6 +259,26 @@
}
}
+.send-screen {
+ &__title {
+ color: $scorpion;
+ font-size: 18px;
+ line-height: 29px;
+ }
+
+ &__subtitle {
+ margin: 10px 0 20px;
+ font-size: 14px;
+ line-height: 24px;
+ }
+
+ &__send-button,
+ &__cancel-button {
+ width: 163px;
+ text-align: center;
+ }
+}
+
.send-token {
display: flex;
flex-flow: column nowrap;
@@ -294,23 +333,4 @@
width: 163px;
}
}
-
- .send-screen-input-wrapper {
- .fa-bolt {
- padding-right: 4px;
- }
-
- .large-input {
- border: 1px solid $dusty-gray;
- border-radius: 4px;
- margin: 4px 0 20px;
- font-size: 16px;
- line-height: 22.4px;
- font-family: "DIN OT";
- }
-
- .send-screen-gas-input {
- border: 1px solid transparent;
- }
- }
}