Merge pull request #3565 from gabrielbazan7/fix/viewChanges

Global settings terms of use
This commit is contained in:
Gustavo Maximiliano Cortez 2015-12-02 11:59:15 -03:00
commit 83c6436dd0
5 changed files with 31 additions and 6 deletions

View file

@ -1179,6 +1179,21 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
}
/*/////////////////////////////////////////////////*/
.terms {
padding: 0.8rem;
}
.terms ul {
font-size: 0.8rem;
text-align: justify;
margin-left: 0;
}
.terms li {
list-style-type:none;
display: inline;
}
.scrollArea {
height: 280px;
overflow: scroll;

View file

@ -0,0 +1,8 @@
'use strict';
angular.module('copayApp.controllers').controller('termOfUseController',
function($scope, uxLanguage) {
$scope.lang = uxLanguage.currentLanguage;
});