Merge pull request #72 from cmgustavo/ref/design-22

Fix button to skip onboarding-email
This commit is contained in:
Gustavo Maximiliano Cortez 2016-09-07 15:01:38 -03:00 committed by GitHub
commit 28a896c18f
2 changed files with 5 additions and 7 deletions

View file

@ -16,11 +16,9 @@
<input type="email" id="email" name="email" ng-model="email" required></input> <input type="email" id="email" name="email" ng-model="email" required></input>
</label> </label>
</form> </form>
<div class="text-center"> <button class="button button-block button-positive button-clear" ng-click="onboardingMailSkip()">
<button class="button button-back no-border" ng-click="onboardingMailSkip()"> {{'Skip' | translate}}
{{'Skip' | translate}} </button>
</button>
</div>
</div> </div>
<div class="overlay"></div> <div class="overlay"></div>
</ion-content> </ion-content>

View file

@ -14,14 +14,14 @@
opacity: 1; opacity: 1;
background: #fff; background: #fff;
color: rgb(108, 108, 108); color: rgb(108, 108, 108);
height: 13rem; height: 14rem;
animation-name: topBottom; animation-name: topBottom;
animation-iteration-count: 1; animation-iteration-count: 1;
animation-timing-function: ease-in; animation-timing-function: ease-in;
animation-duration: 1s; animation-duration: 1s;
animation-delay: 2s; animation-delay: 2s;
position: absolute; position: absolute;
bottom: -13rem; bottom: -14rem;
animation-fill-mode: forwards; animation-fill-mode: forwards;
z-index: 5; z-index: 5;
margin-top: 0; margin-top: 0;