diff --git a/src/components/login/login.less b/src/components/login/login.less index 471636faf..9e98a7cad 100644 --- a/src/components/login/login.less +++ b/src/components/login/login.less @@ -11,4 +11,8 @@ login { .random-input { margin: 0 0 25px 0; } + + md-card { + padding-top: 40px; + } } diff --git a/src/components/login/login.pug b/src/components/login/login.pug index 953c88131..27af6f77a 100644 --- a/src/components/login/login.pug +++ b/src/components/login/login.pug @@ -1,7 +1,4 @@ md-card - md-card-title - md-card-title-text - span.md-title Sign In md-card-content(flex='100', flex-gt-sm='70', flex-offset-gt-sm='15') form(ng-submit='$ctrl.passConfirmSubmit()') md-input-container.md-block diff --git a/test/components/login/login.spec.js b/test/components/login/login.spec.js index 032343a47..501369dcd 100644 --- a/test/components/login/login.spec.js +++ b/test/components/login/login.spec.js @@ -29,11 +29,6 @@ describe('Login component', () => { $rootScope.$digest(); }); - const HEADER_TEXT = 'Sign In'; - it(`should contain header saying "${HEADER_TEXT}"`, () => { - expect(element.find('.md-title').text()).to.equal(HEADER_TEXT); - }); - const PASS_LABEL_TEXT = 'Enter your passphrase'; it(`should contain a form input with label saying "${PASS_LABEL_TEXT}"`, () => { expect(element.find('form md-input-container label.pass').text()).to.equal(PASS_LABEL_TEXT);