aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/index.css
diff options
context:
space:
mode:
authorkumavis <kumavis@users.noreply.github.com>2017-08-08 01:51:18 +0800
committerGitHub <noreply@github.com>2017-08-08 01:51:18 +0800
commit57abc58d623b66a091987a944d8c45737f4feabe (patch)
tree546623f2e7f98dc745afe924e3937da722894820 /ui/app/css/index.css
parent2ba5737728d2539fc3bc9015e440f37341219cdc (diff)
parent50fc9c965842f023180630267ecd8dc4f47e9cd6 (diff)
downloadtangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar
tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.gz
tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.bz2
tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.lz
tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.xz
tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.tar.zst
tangerine-wallet-browser-57abc58d623b66a091987a944d8c45737f4feabe.zip
Merge pull request #1835 from MetaMask/NewUI
Begin UI Refactor with Responsiveness & New Menus
Diffstat (limited to 'ui/app/css/index.css')
-rw-r--r--ui/app/css/index.css53
1 files changed, 46 insertions, 7 deletions
diff --git a/ui/app/css/index.css b/ui/app/css/index.css
index 808aafb4c..49b432a1f 100644
--- a/ui/app/css/index.css
+++ b/ui/app/css/index.css
@@ -19,17 +19,52 @@ html, body {
font-weight: 300;
line-height: 1.4em;
background: #F7F7F7;
+ margin: 0;
+ padding: 0;
+}
+
+html {
+ min-height: 500px;
+}
+
+.app-root {
+ overflow: hidden;
+ position: relative
+}
+
+.app-primary {
+ display: flex;
}
input:focus, textarea:focus {
outline: none;
}
+.full-size {
+ height: 100%;
+ width: 100%;
+}
+
+.full-width {
+ width: 100%;
+}
+
+.full-height {
+ height: 100%;
+}
+
+.full-flex-height {
+ display: flex;
+ flex: 1 1 auto;
+ flex-direction: column;
+}
+
#app-content {
overflow-x: hidden;
min-width: 357px;
- width: 360px;
- height: 500px;
+ height: 100%;
+ display: flex;
+ flex-direction: column;
}
button, input[type="submit"] {
@@ -130,10 +165,6 @@ h2.page-subtitle {
margin: 12px;
}
-.app-primary {
-
-}
-
.app-footer {
padding-bottom: 10px;
align-items: center;
@@ -170,7 +201,7 @@ textarea.twelve-word-phrase {
}
.check {
- margin-left: 7px;
+ margin-left: 12px;
color: #F7861C;
flex: 1 0 auto;
display: flex;
@@ -403,8 +434,16 @@ input.large-input {
/* account detail screen */
.account-detail-section {
+ display: flex;
+ flex-wrap: wrap;
+ overflow-y: auto;
+ flex-direction: inherit;
+}
+.grow-tenx {
+ flex-grow: 10;
}
+
.name-label{
}