Add reactified challenge success modal

This commit is contained in:
Stuart Taylor
2016-10-17 21:38:16 +01:00
parent 1934b70da4
commit 60d46e069b
9 changed files with 176 additions and 18 deletions

View File

@@ -0,0 +1,34 @@
.challenge-success-modal {
display: flex;
flex-direction: column;
justify-content: center;
height: 50vh;
.modal-header {
margin-bottom: 0;
.close {
color: #eee;
font-size: 4rem;
opacity: 0.6;
transition: all 300ms ease-out;
margin-top: 0;
padding-left: 0;
&:hover {
opacity: 1;
}
}
}
.modal-body {
padding: 35px;
display: flex;
flex-direction: column;
justify-content: center;
.fa {
margin-right: 0;
}
}
}

View File

@@ -1203,3 +1203,4 @@ and (max-width : 400px) {
@import "map.less";
@import "drawers.less";
@import "sk-wave.less";
@import "classic-modal.less";