Fix: global colors

This commit is contained in:
Gabriel Masclef 2017-11-09 16:12:48 -03:00
parent 31be7b71a1
commit 455b38821f
No known key found for this signature in database
GPG Key ID: DD6D7EAADE12280D
3 changed files with 8 additions and 5 deletions

View File

@ -6,7 +6,7 @@ page-confirm {
padding: 1rem 1rem 1rem 3rem;
}
span.label {
color: color($colors, labels);
color: color($global-colors, labels);
margin-bottom: 0.5rem;
}
.sending-label {
@ -29,7 +29,7 @@ page-confirm {
}
.alternative {
margin-top: 1rem;
color: color($colors, light-grey);
color: color($global-colors, light-grey);
}
}
@ -47,7 +47,7 @@ page-confirm {
width: 35px !important;
background-color: color($colors, primary);
&.disabled {
background-color: color($colors, light-grey);
background-color: color($global-colors, light-grey);
}
}
.icon-bitcoin {

View File

@ -2,6 +2,11 @@
// Position
// --------------------------------------------------
$global-colors: (
light-grey: #9B9B9B,
labels: #6C6C6E,
);
.bottom-absolute {
width: 100%;
position: absolute;

View File

@ -18,7 +18,5 @@ $colors: (
success: #7BC94D,
light: #f4f4f4,
dark: #222,
light-grey: #9B9B9B,
labels: #6C6C6E,
);