updated add contact view for when user has empty address book
This commit is contained in:
parent
b86f2e240d
commit
e3bd63777c
5 changed files with 108 additions and 6 deletions
|
|
@ -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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue