You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
868 B

4 years ago
/* stylelint-disable */
@import '../variables/colors';
@import '../variables/sizes';
// Intermediate info for a view with minimal information on intermediate states.
// E.g. loading view, error screen, empty results etc.
//
// --------------------------------------------------------------------------------------------------------------------
.IntermediateInfo {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
min-height: 360px;
margin: 0 auto;
text-align: center;
}
_:-ms-lang(x),
.IntermediateInfo {
padding-top: 100px;
}
// Let a flex layout position it rather than enforcing a min-height
.IntermediateInfo--flex {
min-height: 0;
}
.IntermediateInfo-title--error {
color: $cHighlight-negative;
}
.IntermediateInfo.IntermediateInfo--pullUp {
margin-top: -50px;
padding: 0 0 50px;
}