aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/newui-sections.scss
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/css/itcss/components/newui-sections.scss')
-rw-r--r--ui/app/css/itcss/components/newui-sections.scss13
1 files changed, 6 insertions, 7 deletions
diff --git a/ui/app/css/itcss/components/newui-sections.scss b/ui/app/css/itcss/components/newui-sections.scss
index d5ea8be1b..a9167dfb8 100644
--- a/ui/app/css/itcss/components/newui-sections.scss
+++ b/ui/app/css/itcss/components/newui-sections.scss
@@ -2,6 +2,10 @@
NewUI Container Elements
*/
+// Component Colors
+$tx-view-bg: $white;
+$wallet-view-bg: $wild-sand;
+
// Main container
.main-container {
position: absolute;
@@ -13,20 +17,18 @@
overflow-y: scroll;
}
-
// tx view
.tx-view {
flex: 63.5 0 66.5%;
- background: $white; // TODO: add to resuable colors
+ background: $tx-view-bg;
}
-
// wallet view
.wallet-view {
flex: 33.5 0 33.5%;
- background: $wild-sand,
+ background: $wallet-view-bg,
}
.account-options-menu {
@@ -35,8 +37,6 @@
margin: 5% 7%;
}
-
-
.wallet-view.sidebar {
flex: 1 0 230px;
background: rgb(250, 250, 250);
@@ -136,5 +136,4 @@
@media screen and (max-width: 575px) {
text-align: center;
}
-
}