Chatwoot/app/javascript/dashboard/assets/scss/widgets/_states.scss

43 lines
611 B
SCSS
Raw Normal View History

.loading-state {
padding: $space-jumbo $space-smaller;
2019-10-27 13:58:02 +00:00
.message {
color: $color-gray;
display: block;
text-align: center;
width: 100%;
}
2019-10-27 13:58:02 +00:00
.spinner {
float: none;
top: -$space-smaller;
}
}
// EMPTY STATES
.empty-state {
padding: $space-jumbo $space-smaller;
2019-10-27 13:58:02 +00:00
.title,
.message {
display: block;
text-align: center;
width: 100%;
}
.title {
font-size: $font-size-giga;
font-weight: $font-weight-feather;
}
.message {
color: $color-gray;
margin: $space-normal auto;
width: 90%;
}
.button {
margin-top: $space-medium;
}
2019-10-27 13:58:02 +00:00
}