updated add contact view for when user has empty address book

This commit is contained in:
Jamal Jackson 2016-09-22 11:46:52 -04:00
commit e3bd63777c
5 changed files with 108 additions and 6 deletions

View file

@ -1,8 +1,19 @@
@mixin center-block($topBottom: 0) {
float:none;
float: none;
margin: $topBottom auto;
}
.center-block{
@mixin absolute-center() {
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
}
.center-block {
@include center-block();
}
.absolute-center{
@include absolute-center();
}